/* ============================================================
   Lumière Estética Avançada — Landing Page Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --warm-white: #F5F0EB;
  --gold: #C9A96E;
  --gold-light: #E2C896;
  --gold-dark: #A8874A;
  --rose: #D4A5A5;
  --rose-light: #EDD5D5;
  --dark: #1A1A1A;
  --text: #5C5C5C;
  --muted: #9A8C8C;
  --white: #FFFFFF;
  --section-alt: #FAF7F4;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.10);
  --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.14);
  --shadow-gold: 0 8px 24px rgba(201, 169, 110, 0.30);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }

p { line-height: 1.75; }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-xl {
  padding: 20px 52px;
  font-size: 1.05rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201, 169, 110, 0.45);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1EBE5A;
  border-color: #1EBE5A;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   Landing Header (minimal)
   ============================================================ */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 235, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  padding: 16px 24px;
}

.lp-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.lp-logo span {
  color: var(--gold);
}

.lp-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}

.lp-header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--text);
}

/* ============================================================
   Landing Hero
   ============================================================ */
.lp-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #2C2420 0%, #3D2E28 35%, #4A3530 65%, #302520 100%);
  padding: 80px 24px;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(201, 169, 110, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(212, 165, 165, 0.13) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 10%, rgba(201, 169, 110, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.lp-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.lp-urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF6B6B;
  animation: pulseDot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.lp-hero h1 {
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
}

.lp-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.lp-hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  line-height: 1.8;
}

.lp-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.lp-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.lp-trust-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ============================================================
   Section utilities
   ============================================================ */
.lp-section {
  padding: 90px 24px;
}

.lp-section-alt {
  background: var(--section-alt);
}

.lp-section-dark {
  background: var(--dark);
}

.lp-section-white {
  background: var(--white);
}

.lp-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.lp-section-title {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.lp-section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.lp-section-header .lp-section-sub {
  margin: 0 auto;
}

.text-white { color: var(--white) !important; }
.text-muted-light { color: rgba(255,255,255,0.55) !important; }

/* ============================================================
   Pain + Solution
   ============================================================ */
.pain-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.pain-block h3,
.solution-block h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}

.pain-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 165, 165, 0.2);
  color: #B87878;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
}

.solution-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
}

.solution-card .btn {
  align-self: flex-start;
}

/* ============================================================
   Benefits Grid
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.1);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 169, 110, 0.25);
}

.benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(212,165,165,0.08));
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.benefit-card h3 {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   How it works (Landing)
   ============================================================ */
.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.lp-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--rose), var(--gold));
  opacity: 0.3;
}

.lp-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
}

.lp-step:not(:last-child) {
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.lp-step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}

.lp-step-content h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 6px;
  padding-top: 12px;
}

.lp-step-content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   Before / After (Landing)
   ============================================================ */
.lp-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.lp-ba-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--white);
}

.lp-ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.lp-ba-visual {
  display: flex;
  height: 240px;
  position: relative;
}

.lp-ba-half {
  flex: 1;
  position: relative;
}

.lp-ba-half--before {
  background: linear-gradient(135deg, #D4B896 0%, #C5A580 40%, #B89070 70%, #C8A882 100%);
}

.lp-ba-half--before::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(40, 30, 25, 0.2);
}

.lp-ba-half--after {
  background: linear-gradient(135deg, #FAF0E8 0%, #F5E6D5 40%, #F0DCC8 70%, #FAF2EC 100%);
}

.lp-ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  z-index: 2;
  transform: translateX(-50%);
}

.lp-ba-label {
  position: absolute;
  bottom: 10px;
  z-index: 4;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.lp-ba-half--before .lp-ba-label {
  left: 8px;
  background: rgba(26,26,26,0.6);
  color: rgba(255,255,255,0.85);
}

.lp-ba-half--after .lp-ba-label {
  right: 8px;
  background: rgba(201,169,110,0.9);
  color: var(--white);
}

.lp-ba-info {
  padding: 16px 18px;
  background: var(--white);
}

.lp-ba-info h4 {
  font-size: 0.9rem;
  color: var(--dark);
  font-family: var(--font-heading);
}

.lp-ba-info span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ============================================================
   Testimonials (Landing)
   ============================================================ */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.lp-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: var(--transition);
}

.lp-testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(201,169,110,0.15);
  position: absolute;
  top: 8px;
  right: 20px;
  line-height: 1;
}

.lp-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.lp-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.lp-testimonial-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(201,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #F5E0D0, #E8C4A8);
}

.lp-author-avatar--2 { background: linear-gradient(135deg, #EDD5D5, #DDB8B8); }

.lp-author-info h4 {
  font-size: 0.88rem;
  color: var(--dark);
  font-family: var(--font-heading);
}

.lp-author-info span {
  font-size: 0.75rem;
  color: var(--gold);
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,169,110,0.12);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(201,169,110,0.3);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,169,110,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 300;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
}

/* ============================================================
   Landing Final CTA
   ============================================================ */
.lp-final-cta {
  padding: 90px 24px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-final-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.lp-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.lp-final-cta h2 {
  color: var(--white);
}

.lp-final-cta p {
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
}

.lp-final-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.lp-final-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.lp-final-trust-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* ============================================================
   Landing Footer (minimal)
   ============================================================ */
.lp-footer {
  background: #111111;
  padding: 32px 24px;
  text-align: center;
}

.lp-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lp-footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
}

.lp-footer-logo span {
  color: var(--gold);
}

.lp-footer-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.lp-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.lp-footer-links a:hover {
  color: var(--gold);
}

/* ============================================================
   WhatsApp Float
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-label {
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.whatsapp-btn-circle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: waPulse 2s ease-in-out infinite;
}

.whatsapp-btn-circle::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.2);
  animation: waPulse 2s ease-in-out infinite 0.4s;
}

.whatsapp-btn-circle:hover {
  background: #1EBE5A;
  transform: scale(1.08);
}

.whatsapp-btn-circle svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  position: relative;
  z-index: 1;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   Scroll Reveal
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive 768px
   ============================================================ */
@media (max-width: 768px) {
  .pain-solution {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-ba-grid {
    grid-template-columns: 1fr;
  }

  .lp-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .lp-hero-trust {
    flex-direction: column;
    align-items: center;
  }

  .lp-header-right {
    display: none;
  }
}

/* ============================================================
   Responsive 480px
   ============================================================ */
@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    min-height: 85vh;
    padding: 60px 20px;
  }

  .lp-section {
    padding: 60px 20px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}

/* ============================================================
   Scroll Progress Bar (landing pages)
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================================
   LGPD Cookie Notice (landing pages)
   ============================================================ */
.lgpd-notice {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(26, 26, 26, 0.18);
  border: 1px solid rgba(201, 169, 110, 0.2);
  z-index: 9000;
  animation: lgpd-slide-up 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lgpd-notice[hidden] {
  display: none !important;
}

@keyframes lgpd-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lgpd-inner {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lgpd-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.lgpd-text p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.lgpd-text a {
  color: var(--gold);
  text-decoration: underline;
}

.lgpd-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.lgpd-reject {
  font-size: 0.78rem;
  padding: 8px 14px;
  border: 1.5px solid rgba(201, 169, 110, 0.35);
  border-radius: var(--radius-full);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.lgpd-reject:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.lgpd-accept {
  font-size: 0.78rem;
  padding: 8px 18px;
}

@media (max-width: 480px) {
  .lgpd-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .lgpd-actions {
    justify-content: stretch;
  }

  .lgpd-actions .btn,
  .lgpd-actions .lgpd-reject {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}
