@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --paper: #f5f5f5;
  --surface: #fffdfb;
  --ink: #181513;
  --stone: #706b65;
  --line: #dedad5;
  --accent: #b78446;
  --accent-dark: #9f6d32;
  --shadow: 0 16px 42px -34px rgba(24, 21, 19, 0.22);
  --container: 1152px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 50%;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fffdfb;
  font-size: .8rem;
  font-weight: 700;
  transform: translate(-50%, -180%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translate(-50%, 0); }

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 245, 245, .95);
  backdrop-filter: blur(18px);
}

.header-content { display: flex; align-items: center; justify-content: space-between; padding-block: 16px; }

.brand { display: flex; flex-direction: column; line-height: 1.08; }
.brand span, .footer-brand strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.28rem; font-weight: 600; }
.brand small, .footer-brand small { margin-top: 4px; color: var(--stone); font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; }

nav { display: flex; gap: 36px; }
nav a { color: var(--stone); font-size: .875rem; transition: color .2s ease; }
nav a:hover, .footer-links a:hover, .text-link:hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid #26211d;
  background: #26211d;
  color: #fffdfb;
  box-shadow: 0 14px 26px -20px rgba(24, 21, 19, .52);
  font-size: .875rem;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-2px); border-color: #4a4037; background: #4a4037; box-shadow: 0 18px 30px -20px rgba(24, 21, 19, .64); }
.button-small { min-height: 41px; padding: 9px 20px; }
.button-icon, .social-icon { display: inline-block; flex: 0 0 auto; width: 1.15em; height: 1.15em; object-fit: contain; }
.button-icon-whatsapp { clip-path: circle(45% at 50% 50%); transform: scale(1.12); }

.floating-whatsapp {
  position: fixed;
  z-index: 50;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 34px -18px rgba(0, 0, 0, .3);
  font-size: 1.8rem;
  transition: box-shadow .2s ease, transform .2s ease;
}

.floating-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -18px rgba(0, 0, 0, .38); }
.floating-whatsapp img { width: 100%; height: 100%; object-fit: cover; clip-path: circle(45% at 50% 50%); transform: scale(1.12); }

.hero { position: relative; overflow: hidden; padding: 148px 0 112px; }
.hero-glow { position: absolute; z-index: -1; border-radius: 999px; filter: blur(52px); pointer-events: none; }
.hero-glow-left { top: 48px; left: -12%; width: 288px; height: 288px; background: rgba(183, 132, 70, .09); }
.hero-glow-right { right: -4%; bottom: -8%; width: 320px; height: 320px; background: #f0e6da; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-copy { position: relative; top: -112px; }

h1, h2, h3, p { margin: 0; }
h1, h2, h3, .hero-title, .statement, .quote-card p { font-family: "Cormorant Garamond", Georgia, serif; }
h1 { max-width: 720px; font-size: clamp(3rem, 7vw, 5rem); font-weight: 500; line-height: .92; letter-spacing: -.035em; }
h2 { max-width: 780px; font-size: clamp(2.5rem, 4.8vw, 3.4rem); font-weight: 500; line-height: .98; letter-spacing: -.025em; }
.hero-logo { display: block; width: min(100%, 180px); height: auto; border-radius: 18px; box-shadow: 0 12px 28px -22px rgba(24, 21, 19, .36); }
.lead { max-width: 590px; margin-top: 26px; color: var(--ink); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 3.3vw, 2.75rem); font-weight: 500; line-height: 1.02; letter-spacing: -.02em; }
.intro { max-width: 576px; margin-top: 14px; color: color-mix(in srgb, var(--stone), transparent 10%); font-size: 1rem; line-height: 1.7; }

.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 40px; }
.instagram-link, .text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: .875rem; font-weight: 600; }

.audiences { display: grid; max-width: 650px; grid-template-columns: repeat(3, 1fr); gap: 0 20px; margin: 44px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.audiences li { display: flex; align-items: center; gap: 10px; min-height: 58px; border-bottom: 1px solid var(--line); color: var(--stone); font-size: .78rem; font-weight: 600; line-height: 1.35; }
.audience-icon { width: 17px; height: 17px; flex: 0 0 auto; color: var(--accent); stroke-width: 1.6; }

.hero-media { padding-left: 24px; }
.video-card { margin: 0; }
.video-frame { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #f1ece6; box-shadow: 0 18px 38px -28px rgba(24, 21, 19, .22); }
.video-frame::after { position: absolute; right: 0; bottom: 0; left: 0; height: 96px; background: linear-gradient(to top, rgba(0, 0, 0, .38), transparent); content: ""; pointer-events: none; }
.video-frame.portrait { aspect-ratio: 4 / 5; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; vertical-align: middle; }
.video-card figcaption { padding: 16px 4px 0; }
.video-card small, .card small { display: block; color: color-mix(in srgb, var(--accent), transparent 20%); font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; }
.video-card strong { display: block; margin-top: 8px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.65rem, 3vw, 1.9rem); font-weight: 500; line-height: 1; }
.video-card figcaption span { display: block; margin-top: 8px; color: var(--stone); font-size: .9rem; line-height: 1.6; }

.trust-card, .card, .quote-card, .instagram-card { border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); }
.trust-card { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; padding: 20px; }
.trust-icon { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px; color: var(--accent); stroke-width: 1.6; }
.trust-card strong { display: block; font-size: .875rem; }
.trust-card p { margin-top: 4px; color: var(--stone); font-size: .875rem; line-height: 1.55; }

.section { scroll-margin-top: 110px; border-top: 1px solid var(--line); padding: 88px 0; }
.section-heading p { max-width: 640px; margin-top: 20px; color: var(--stone); font-size: 1rem; line-height: 1.7; }
.section-heading h2 { margin-top: 0; }

.symptom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 40px; border-top: 1px solid var(--line); }
.card { padding: 20px; }
.symptom-grid .card { display: flex; min-height: 144px; flex-direction: column; justify-content: space-between; padding: 22px 24px 24px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; box-shadow: none; }
.symptom-grid .card:nth-child(3n) { border-right: 0; }
.card h3 { margin-top: 16px; font-size: 1.55rem; font-weight: 500; line-height: 1; }
.statement { max-width: 760px; margin-top: 40px; font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 500; line-height: 1.02; }

.authority-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; }
.authority-grid .button { margin-top: 32px; }
.quote-stack { display: grid; gap: 0; border-top: 1px solid var(--line); }
.quote-card { padding: 25px 0 25px 26px; border: 0; border-bottom: 1px solid var(--line); border-left: 2px solid rgba(183, 132, 70, .7); border-radius: 0; background: transparent; box-shadow: none; }
.quote-card p { max-width: 450px; font-size: clamp(1.7rem, 2.7vw, 2rem); font-weight: 500; line-height: .98; }

.process-grid { display: grid; grid-template-columns: 1fr .96fr; gap: 48px; align-items: start; }
.process-list, .benefit-list, .fit-list { display: grid; margin: 40px 0 32px; padding: 0; list-style: none; }
.process-list { gap: 0; margin-left: 18px; padding-left: 26px; border-left: 1px solid var(--line); }
.process-list li { position: relative; display: flex; align-items: flex-start; gap: 16px; }
.process-list .card { padding: 0 0 30px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.process-list li > span { position: absolute; left: -45px; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(183, 132, 70, .3); border-radius: 50%; background: var(--paper); color: var(--accent); font-size: .82rem; font-weight: 700; }
.process-list h3 { font-family: "Manrope", Arial, sans-serif; font-size: 1.08rem; font-weight: 500; }
.process-list p { margin-top: 8px; color: var(--stone); font-size: .94rem; line-height: 1.6; }
.process-grid .video-card { margin-top: 32px; }

.benefits-grid { display: grid; grid-template-columns: 1fr; }
.fit-grid { display: grid; grid-template-columns: 1fr .92fr; gap: 40px; align-items: start; }
.benefit-list { grid-template-columns: repeat(3, 1fr); gap: 0 26px; border-top: 1px solid var(--line); }
.benefit-item, .fit-item { display: flex; align-items: flex-start; gap: 10px; color: var(--ink); font-size: .94rem; font-weight: 600; line-height: 1.5; }
.benefit-item { min-height: 82px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.benefit-item svg, .fit-item svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; color: var(--accent); stroke-width: 2; }
.instagram-card { height: fit-content; padding: 32px; }
.instagram-card h2 { margin-top: 20px; font-size: clamp(2.5rem, 4vw, 3.25rem); }
.instagram-card > p { margin-top: 20px; color: var(--stone); line-height: 1.7; }
.instagram-button { display: inline-flex; align-items: center; gap: 12px; margin-top: 32px; padding: 12px 24px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); font-size: .875rem; font-weight: 700; transition: background .2s ease, border-color .2s ease; }
.instagram-button:hover { border-color: color-mix(in srgb, var(--accent), transparent 45%); background: #fbf8f4; }
.direct-contact { margin-top: 28px !important; padding: 20px; border: 1px solid var(--line); border-radius: 24px; background: #fff; font-size: .875rem; }
.direct-contact a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(183, 132, 70, .45); text-underline-offset: 4px; }

.fit-section { padding-top: 56px; }
.fit-list { gap: 0; margin-bottom: 0; border-top: 1px solid var(--line); }
.fit-item { padding: 15px 0; border-bottom: 1px solid var(--line); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.contact-copy { order: 2; }
.contact-grid .video-card { order: 1; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
.contact-cards strong { font-size: .875rem; }
.contact-cards p { margin-top: 8px; color: var(--stone); font-size: .875rem; line-height: 1.55; }

.contact-section { border-top-color: #3b3530; background: #24211f; color: #fffdfb; }
.contact-section .section-heading p, .contact-section .contact-cards p, .contact-section .video-card figcaption span { color: #c9c1b8; }
.contact-section .section-heading h2, .contact-section .video-card strong, .contact-section .contact-cards strong { color: #fffdfb; }
.contact-section .text-link { color: #fffdfb; }
.contact-section .button { border-color: #fffdfb; background: #fffdfb; color: #24211f; box-shadow: 0 14px 30px -20px rgba(0, 0, 0, .7); }
.contact-section .button:hover { border-color: #dec39b; background: #dec39b; }
.contact-section .contact-cards .card { border-color: rgba(255, 253, 251, .16); background: rgba(255, 253, 251, .05); box-shadow: none; }
.contact-section .video-frame { border-color: rgba(255, 253, 251, .18); }
.contact-section .video-card small { color: #dec39b; }

footer { border-top: 1px solid #3b3530; padding: 40px 0; background: #24211f; color: #c9c1b8; }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: .875rem; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { color: #fffdfb; font-size: 1.1rem; }
.footer-brand small { color: #c9c1b8; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: #fffdfb; }
.copyright { margin-top: 24px; color: #9e948a; font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease-out, transform .55s ease-out; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media (max-width: 860px) {
  nav { display: none; }
  .hero { padding: 136px 0 80px; }
  .hero-grid, .authority-grid, .process-grid, .benefits-grid, .fit-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { padding-left: 0; }
  .contact-copy, .contact-grid .video-card { order: initial; }
  .video-frame.portrait { aspect-ratio: 16 / 18; }
  .contact-grid .video-card { max-width: 560px; }
  .audiences { max-width: none; grid-template-columns: repeat(2, 1fr); }
  .benefit-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header .button { min-height: 38px; padding: 8px 14px; font-size: .78rem; }
  .brand span { font-size: 1.12rem; }
  .brand small { font-size: .54rem; }
  .hero { padding-top: 126px; }
  .hero-copy { top: -36px; }
  .hero-logo { width: 150px; border-radius: 14px; }
  .lead { font-size: 1rem; }
  .audiences, .symptom-grid, .benefit-list, .contact-cards { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-heading p { font-size: .96rem; }
  .symptom-grid .card { min-height: 0; border-right: 0; }
  .quote-card p { font-size: 1.65rem; }
  .quote-card { padding-left: 20px; }
  .process-list { margin-left: 16px; padding-left: 22px; }
  .process-list li > span { left: -41px; }
  .benefit-item { min-height: 0; }
  .instagram-card { padding: 24px; }
  .footer-main, .footer-links { flex-direction: column; align-items: center; }
  .footer-brand { align-items: center; text-align: center; }
  .copyright { text-align: center; }
  .floating-whatsapp { right: 20px; bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
