/* =========================================================
   Dra. Nathalia Gurgel — Premium Psychiatry Design System
   Warm editorial palette · Fraunces + Inter + Caveat
   ========================================================= */

/* -- TOKENS ----------------------------------------------- */
:root {
  /* Palette */
  --bg-primary:    #FBFAF7;
  --bg-alt:        #F2EDE5;
  --bg-dark:       #2E3A35;
  --brand:         #2E3A35;
  --cta:           #B08968;
  --cta-hover:     #9A7557;
  --accent-sage:   #8FA69A;
  --accent-sage-soft: #C8D2CC;
  --text:          #1A1F1C;
  --text-muted:    #5B615C;
  --text-inverse:  #FBFAF7;
  --hairline:      #E3DCCE;
  --success:       #6B8E6E;
  --whatsapp:      #25D366;
  --whatsapp-hover:#1DA851;
  --star:          #C9A84C;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:  'Caveat', 'Brush Script MT', cursive;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --section-pad: clamp(64px, 10vw, 112px);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(20,40,60,.06);
  --shadow-lift: 0 4px 8px rgba(0,0,0,.04), 0 18px 36px rgba(20,40,60,.08);
  --shadow-cta:  0 6px 20px rgba(176,137,104,.35);

  /* Motion */
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-inout: cubic-bezier(.4,0,.2,1);
  --dur-fast: .15s;
  --dur: .3s;
  --dur-slow: .6s;

  /* Gradients */
  --overlay-hero: linear-gradient(180deg, rgba(46,58,53,0) 30%, rgba(46,58,53,.62) 100%);
  --overlay-image: linear-gradient(135deg, rgba(46,58,53,.08) 0%, rgba(143,166,154,.15) 100%);
}

/* -- RESET / BASE ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--cta); color: #fff; }

/* -- TYPOGRAPHY ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 0;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  letter-spacing: -0.01em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--cta);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

p { margin: 0; }
p + p { margin-top: 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: 16px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
.section-header .eyebrow { justify-content: center; }

.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.quote-handwritten {
  font-family: var(--font-accent);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.3;
  color: var(--brand);
  letter-spacing: 0;
}

/* -- LAYOUT PRIMITIVES ------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--section-pad) 0;
}

section.section-tight { padding: clamp(48px, 7vw, 72px) 0; }

.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--text-inverse); }
.section-dark .eyebrow { color: var(--accent-sage-soft); }
.section-dark .lead { color: rgba(251,250,247,.8); }

.section-header {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.grid {
  display: grid;
  gap: var(--gutter);
}

/* -- BUTTONS --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  transition: transform var(--dur-fast) var(--ease-inout),
              background var(--dur-fast) var(--ease-inout),
              box-shadow var(--dur-fast) var(--ease-inout),
              color var(--dur-fast) var(--ease-inout);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 10px 28px rgba(176,137,104,.45);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}
.btn-ghost:hover {
  background: var(--brand);
  color: var(--text-inverse);
}

.btn-ghost-light {
  background: transparent;
  color: var(--text-inverse);
  border: 1px solid rgba(255,255,255,.5);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.9);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--whatsapp-hover); }

.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-small { padding: 10px 20px; font-size: 13px; }

/* -- NAV ---------------------------------------------------- */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--dur) var(--ease-inout),
              backdrop-filter var(--dur) var(--ease-inout),
              box-shadow var(--dur) var(--ease-inout);
  background: transparent;
}

.nav-bar.scrolled {
  background: rgba(251,250,247,.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgba(227,220,206,.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
  color: var(--brand);
  text-decoration: none;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.nav-logo-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.1;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 18px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--brand);
  line-height: 1.15;
}
.nav-logo-role {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 400;
  font-size: 18px;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-sage);
  font-feature-settings: "tnum" 1;
}
@media (max-width: 720px) {
  .nav-logo { gap: 8px; }
  .nav-logo-img { height: 36px; }
  .nav-logo-main { font-size: 14px; }
  .nav-logo-role { font-size: 14px; }
  .nav-logo-sub { font-size: 9px; letter-spacing: 0.15em; }
}
@media (max-width: 460px) {
  .nav-logo-role { display: none; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--cta);
  transition: width var(--dur) var(--ease-inout);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cta); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--brand);
  color: var(--text-inverse);
  padding: 10px 20px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.nav-cta:hover {
  background: var(--cta);
  transform: translateY(-1px);
}
.nav-cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 8px 4px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--brand);
  transition: transform var(--dur) var(--ease-inout), opacity var(--dur);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg-primary);
  padding: 80px 32px 32px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right var(--dur-slow) var(--ease-inout);
  box-shadow: -20px 0 60px rgba(46,58,53,.08);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.01em;
}
.mobile-menu a.active { color: var(--cta); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46,58,53,.4);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease-inout);
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* -- HERO ----------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 64px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-content h1 { margin-bottom: 24px; }
.hero-content .lead { margin-bottom: 40px; max-width: 540px; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 2px 22px;
  border-right: 1px solid var(--hairline);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; padding-right: 0; }
@media (max-width: 720px) {
  .trust-strip { gap: 18px 28px; }
  .trust-item { padding: 0; border-right: 0; }
}
.trust-item strong {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.01em;
  font-feature-settings: "tnum" 1, "ss01" 1;
  line-height: 1.25;
}
.trust-item span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lift);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 12s var(--ease-inout) infinite alternate;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
  pointer-events: none;
}

@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(251,250,247,.92);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}
.hero-badge .dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  position: relative;
}
.hero-badge .dot-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--success);
  opacity: .35;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(.8); opacity: .35; }
  50%      { transform: scale(1.6); opacity: 0; }
}

/* Simpler hero variant (for inner pages) */
.page-hero {
  padding: 168px 0 72px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-primary) 100%);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 620px; margin: 0 auto; }

/* -- TESTIMONIALS ---------------------------------------- */
.testimonial-carousel {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
}
.testimonial-slide {
  grid-column: 1;
  grid-row: 1;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s var(--ease-inout), visibility .9s;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.carousel-dots {
  grid-column: 1;
  grid-row: 2;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  line-height: 1.4;
  color: var(--brand);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 70;
}
.testimonial-quote::before { content: '"'; color: var(--cta); margin-right: 4px; }
.testimonial-quote::after { content: '"'; color: var(--cta); margin-left: 4px; }

.testimonial-slide.featured .testimonial-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--brand);
  line-height: 1.3;
}
.testimonial-slide.featured .testimonial-quote::before,
.testimonial-slide.featured .testimonial-quote::after { display: none; }

.testimonial-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-muted);
}
.testimonial-stars {
  color: var(--star);
  letter-spacing: 2px;
}
.testimonial-author strong {
  color: var(--text);
  font-weight: 500;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--hairline);
  transition: width var(--dur) var(--ease), background var(--dur);
  cursor: pointer;
  border: 0;
}
.carousel-dot.active {
  width: 24px;
  border-radius: var(--r-pill);
  background: var(--cta);
}

.testimonial-cta {
  text-align: center;
  margin-top: 40px;
}

/* -- ABOUT BRIEF --------------------------------------- */
.about-brief {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-brief-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.about-brief-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.92) contrast(1.02);
}
.about-brief-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-image);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* -- COUNTERS ------------------------------------------- */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  text-align: center;
}
.counter-item {
  padding: 24px;
}
.counter-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--cta);
  margin-bottom: 8px;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.counter-label {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* -- CTA SECTION --------------------------------------- */
.cta-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-block h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: 24px;
}
.cta-block .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

/* -- FAQ COMPONENTS ------------------------------------ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  padding: 28px 40px 28px 4px;
  text-align: left;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: color var(--dur-fast);
  position: relative;
}
.faq-q:hover { color: var(--cta); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  position: relative;
  transition: transform var(--dur) var(--ease-inout);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--brand);
  transition: background var(--dur-fast);
}
.faq-icon::before {
  width: 14px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px; height: 14px;
  transform: translate(-50%, -50%);
  transition: transform var(--dur) var(--ease-inout);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item.open .faq-q { color: var(--cta); }
.faq-item.open .faq-icon::before { background: var(--cta); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease-inout);
}
.faq-a-inner {
  padding: 0 40px 28px 4px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 16px;
}

/* -- EXPERIENCE CARDS (the 9 indirect phrases) ----------- */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.experience-card {
  padding: 28px 24px;
  background: var(--bg-primary);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  transition: transform var(--dur) var(--ease-inout),
              border-color var(--dur),
              box-shadow var(--dur);
}
.experience-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-sage);
  box-shadow: var(--shadow-soft);
}
.experience-icon {
  width: 40px; height: 40px;
  color: var(--accent-sage);
  margin-bottom: 20px;
}
.experience-icon svg { width: 100%; height: 100%; stroke-width: 1.25; }
.experience-text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
  color: var(--text);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 400;
}

/* -- STEPS (how first consultation works) --------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  max-width: 1000px;
  margin: 0 auto;
}
.step-card {
  text-align: center;
  position: relative;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--cta);
  font-family: var(--font-display);
  font-size: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--brand);
}
.step-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* -- OFFICE / LOCATION CARDS --------------------------- */
.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.office-card {
  background: var(--bg-primary);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease-inout), box-shadow var(--dur);
}
.office-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.office-body {
  padding: 28px 28px 20px;
}
.office-icon {
  width: 44px; height: 44px;
  background: var(--bg-alt);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cta);
  margin-bottom: 18px;
}
.office-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.office-card address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 12px;
}
.office-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent-sage);
  padding: 6px 12px;
  background: var(--bg-alt);
  border-radius: var(--r-pill);
}
.office-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  filter: grayscale(0.2) saturate(.85);
}

/* -- SCHEDULE OPTIONS --------------------------------- */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.schedule-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--bg-primary);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  transition: transform var(--dur) var(--ease-inout),
              border-color var(--dur), box-shadow var(--dur);
}
.schedule-card:hover {
  transform: translateY(-3px);
  border-color: var(--cta);
  box-shadow: var(--shadow-soft);
}
.schedule-card-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.schedule-card-icon.wa { background: rgba(37,211,102,.12); color: var(--whatsapp); }
.schedule-card-icon.doc { background: rgba(0,170,255,.1); color: #0099cc; }
.schedule-card-icon.phone { background: var(--bg-alt); color: var(--cta); }
.schedule-card-body strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 2px;
}
.schedule-card-body span {
  color: var(--text-muted);
  font-size: 13.5px;
}
.schedule-card-arrow {
  margin-left: auto;
  color: var(--cta);
  font-size: 20px;
  transition: transform var(--dur-fast);
}
.schedule-card:hover .schedule-card-arrow { transform: translateX(4px); }

/* Info box (transparency) */
.info-transparent {
  max-width: 820px;
  margin: 60px auto 0;
  padding: 36px 40px;
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  border-left: 3px solid var(--cta);
}
.info-transparent h3 {
  margin-bottom: 18px;
  font-size: 20px;
}
.info-transparent ul {
  list-style: none;
  display: grid;
  gap: 14px;
}
.info-transparent li {
  padding-left: 28px;
  position: relative;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.55;
}
.info-transparent li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 1.5px;
  background: var(--cta);
}
.info-transparent strong { color: var(--brand); font-weight: 500; }

/* -- TIMELINE (about page) ----------------------------- */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 28px;
  border-left: 1px solid var(--hairline);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 5px var(--bg-primary);
}
.timeline-year {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--cta);
  margin-bottom: 4px;
  display: block;
}
.timeline-item h3 {
  font-size: 19px;
  margin-bottom: 6px;
  color: var(--brand);
}
.timeline-item p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* -- CERTIFICATES STRIP -------------------------------- */
.certs-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.cert-item {
  background: var(--bg-primary);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease-inout);
}
.cert-item:hover { transform: translateY(-3px); }
.cert-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* -- DIFFERENTIALS (Copacabana) ----------------------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.diff-card {
  padding: 36px 32px;
  background: var(--bg-primary);
  border-radius: var(--r-lg);
  border-top: 3px solid var(--cta);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease-inout);
}
.diff-card:hover { transform: translateY(-4px); }
.diff-icon {
  width: 44px; height: 44px;
  color: var(--cta);
  margin-bottom: 20px;
}
.diff-icon svg { width: 100%; height: 100%; stroke-width: 1.25; }
.diff-card h3 { font-size: 20px; margin-bottom: 10px; }
.diff-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* -- WHATSAPP FLOAT ----------------------------------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transition: transform var(--dur) var(--ease-inout), background var(--dur-fast);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: .25;
  animation: waPulse 2s infinite;
  z-index: -1;
}
.wa-float:hover {
  transform: scale(1.08);
  background: var(--whatsapp-hover);
}
.wa-float svg { width: 28px; height: 28px; }
@keyframes waPulse {
  0%, 100% { transform: scale(.9); opacity: .4; }
  50%      { transform: scale(1.3); opacity: 0; }
}

/* -- FOOTER -------------------------------------------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251,250,247,.12);
}
.footer-brand h3 {
  color: var(--text-inverse);
  font-size: 28px;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.footer-brand p {
  color: rgba(251,250,247,.7);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h4 {
  color: var(--accent-sage-soft);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a {
  color: rgba(251,250,247,.78);
  font-size: 14.5px;
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: var(--cta); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(251,250,247,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.footer-social a:hover {
  background: var(--cta);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; color: var(--text-inverse); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(251,250,247,.6);
}

/* -- REVEAL ANIMATIONS -------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }

/* B&W editorial image treatment (for /sobre hero) */
.editorial-bw {
  filter: grayscale(1) contrast(1.05) brightness(.98);
}

/* Film grain overlay for hero images */
.grain {
  position: relative;
}
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 .3 0 0 0 0 .25 0 0 0 0 .2 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .25;
  pointer-events: none;
  z-index: 2;
}

/* -- RESPONSIVE --------------------------------------- */
@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding: 140px 0 72px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image {
    max-width: 420px;
    margin: 0 auto;
  }
  .about-brief {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-brief-image {
    max-width: 440px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  :root {
    --section-pad: 64px;
  }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .steps-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .trust-strip { gap: 16px 24px; }
  .trust-item strong { font-size: 18px; }
  .faq-q { font-size: 16.5px; padding: 22px 36px 22px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-block .cta-buttons { flex-direction: column; align-items: stretch; }
  .wa-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* -- REDUCED MOTION ----------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-image img { animation: none; }
  .wa-float::before { animation: none; }
}
