:root {
  --cream: #F3EEE1;
  --cream-soft: #F8F4EA;
  --cream-pale: #FBF8F1;
  --navy: #1E2E3F;
  --navy-soft: #2A3B4E;
  --bronze: #B18A5C;
  --bronze-light: #C9A86A;
  --bronze-dark: #8F6E45;
  --text: #1E2E3F;
  --text-muted: #5A6B7A;
  --border: #E8DFC9;
  --white: #FFFFFF;
  --green-wa: #25D366;
  --shadow-soft: 0 4px 20px rgba(30, 46, 63, 0.08);
  --shadow-medium: 0 10px 40px rgba(30, 46, 63, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ========================= HEADER ========================= */
.header {
  background: var(--cream);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo img {
  height: 76px;
  width: auto;
  display: block;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.header-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.header-nav a:hover { color: var(--bronze); }
.header-nav a.active {
  color: var(--bronze);
}
.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bronze);
  border-radius: 2px;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--navy);
  color: var(--cream);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
}
.header-cta:hover {
  background: var(--bronze);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ========================= HERO (home) ========================= */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(177, 138, 92, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.hero-logo { margin-bottom: 48px; }
.hero-logo img { height: 170px; width: auto; }
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(177, 138, 92, 0.3);
  border-radius: 999px;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 .bronze {
  color: var(--bronze-light);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(17px, 1.8vw, 20px);
  color: rgba(243, 238, 225, 0.8);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--bronze);
  color: var(--cream);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(177, 138, 92, 0.3);
}
.btn-primary:hover {
  background: var(--bronze-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(177, 138, 92, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(243, 238, 225, 0.3);
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  border-color: var(--bronze-light);
  color: var(--bronze-light);
}
.hero-status {
  margin-top: 56px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(243, 238, 225, 0.5);
}
.hero-status strong { color: var(--bronze-light); font-weight: 600; }

/* ========================= PAGE HERO (content pages) ========================= */
.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(177, 138, 92, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.breadcrumb {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(243, 238, 225, 0.55);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(243, 238, 225, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb a:hover { color: var(--bronze-light); }
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-hero .page-hero-sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: rgba(243, 238, 225, 0.8);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ========================= SECTION BASE ========================= */
.section {
  padding: 100px 0;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ========================= PROSE (artigo) ========================= */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}
.prose h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 500;
  line-height: 1.25;
  margin: 48px 0 18px;
  color: var(--navy);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin: 32px 0 12px;
  color: var(--navy);
}
.prose p { margin-bottom: 18px; color: var(--text-muted); }
.prose p.lead { font-size: 19px; color: var(--text); font-weight: 400; }
.prose strong { color: var(--text); font-weight: 600; }
.prose ul, .prose ol { margin: 18px 0 18px 24px; color: var(--text-muted); }
.prose ul li, .prose ol li { margin-bottom: 10px; padding-left: 8px; }
.prose ul li::marker { color: var(--bronze); }
.prose a { color: var(--bronze-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--bronze); }
.prose blockquote {
  border-left: 3px solid var(--bronze);
  padding: 12px 0 12px 24px;
  margin: 28px 0;
  color: var(--text-muted);
  font-style: italic;
  background: var(--cream-soft);
}

/* ========================= INFO CARDS ========================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.info-card {
  background: var(--cream-pale);
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.info-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--navy);
}
.info-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.info-card .badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ========================= FAQ ========================= */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--bronze); }
.faq-item summary::after {
  content: '+';
  font-size: 26px;
  font-weight: 300;
  color: var(--bronze);
  transition: transform 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--bronze); }
.faq-answer {
  padding: 0 0 24px 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

/* ========================= BOUTIQUE ========================= */
.boutique {
  background: var(--cream-soft);
  text-align: center;
}
.boutique-inner {
  max-width: 760px;
  margin: 0 auto;
}
.boutique blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  font-style: italic;
  margin: 32px 0;
  padding: 0 20px;
  position: relative;
}
.boutique blockquote::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: var(--bronze);
  line-height: 1;
  opacity: 0.4;
}
.boutique-tagline {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 24px;
  font-weight: 600;
}

/* ========================= 4 PILLARS ========================= */
.pillars { background: var(--cream); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.pillar {
  text-align: center;
  padding: 40px 24px;
  background: var(--cream-pale);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--bronze);
}
.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze-light);
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.pillar p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.pillars-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* ========================= DIFFERENTIALS ========================= */
.differentials {
  background: var(--navy);
  color: var(--cream);
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.diff-content .section-eyebrow { color: var(--bronze-light); }
.diff-content h2 { color: var(--cream); }
.diff-content .section-sub { color: rgba(243, 238, 225, 0.75); max-width: 100%; }
.diff-list {
  list-style: none;
  margin-top: 32px;
}
.diff-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(243, 238, 225, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  line-height: 1.5;
}
.diff-list li:last-child { border-bottom: none; }
.diff-list .diff-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--bronze);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}
.diff-visual {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(177, 138, 92, 0.15) 0%, rgba(177, 138, 92, 0.03) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(177, 138, 92, 0.2);
}
.diff-visual-inner {
  text-align: center;
  padding: 40px;
}
.diff-visual-big {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  color: var(--bronze-light);
  font-weight: 500;
  margin-bottom: 16px;
}
.diff-visual-label {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(243, 238, 225, 0.7);
}
.diff-visual-sub {
  font-size: 13px;
  color: rgba(243, 238, 225, 0.5);
  margin-top: 8px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========================= PRICE DUAL ========================= */
.pricing { background: var(--cream-soft); }
.pricing-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bronze);
}
.price-card.navy {
  background: var(--navy);
  color: var(--cream);
  border: none;
}
.price-card.navy::before { background: var(--bronze-light); }
.price-card-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 12px;
}
.price-card.navy .price-card-label { color: var(--bronze-light); }
.price-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}
.price-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.price-card.navy p { color: rgba(243, 238, 225, 0.75); }

@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ========================= CTA FINAL ========================= */
.cta-final {
  background: var(--cream);
  text-align: center;
}
.cta-final-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.cta-final h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-final p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 17px;
}

/* ========================= FOOTER ========================= */
.footer {
  background: var(--navy);
  color: rgba(243, 238, 225, 0.7);
  padding: 56px 0 40px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer h4 {
  color: var(--bronze-light);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer p { line-height: 1.7; margin-bottom: 8px; }
.footer a {
  color: rgba(243, 238, 225, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer a:hover { color: var(--bronze-light); }
.footer ul { list-style: none; }
.footer ul li { padding: 4px 0; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(243, 238, 225, 0.1);
  font-size: 12px;
  color: rgba(243, 238, 225, 0.5);
  text-align: center;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ========================= WHATSAPP FLOAT ========================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--green-wa);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.2s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
.wa-float svg { width: 32px; height: 32px; }

/* ========================= COOKIE BANNER ========================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  background: var(--navy);
  color: var(--cream);
  padding: 20px 22px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(177, 138, 92, 0.35);
  z-index: 98;
  font-size: 13.5px;
  line-height: 1.55;
  display: none;
}
.cookie-banner.visible {
  display: block;
  animation: cookie-slide-in 0.4s ease-out;
}
@keyframes cookie-slide-in {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0 0 14px 0;
  color: rgba(243, 238, 225, 0.9);
}
.cookie-banner a {
  color: var(--bronze-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  padding: 9px 18px;
  background: var(--bronze);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}
.cookie-btn:hover { background: var(--bronze-light); }
.cookie-link {
  color: rgba(243, 238, 225, 0.65);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cookie-link:hover { color: var(--bronze-light); }

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 16px 18px;
  }
  body.cookie-visible .wa-float { bottom: 140px; }
}

/* ========================= UTILITIES ========================= */
.centered { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ========================= MOBILE ========================= */
@media (max-width: 880px) {
  .header-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
  }
  .header-nav.open a {
    padding: 14px 24px;
    width: 100%;
  }
  .header-nav.open a.active::after { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding: 72px 0 88px; }
  .page-hero { padding: 56px 0 48px; }
  .header-cta { padding: 8px 16px; font-size: 13px; }
  .header-logo img { height: 54px; }
  .hero-logo img { height: 110px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
}
