/* ============================================================
   Dr. Vinicius Santana — EvidênciaMed
   Paleta: Deep Teal #1A4448 · Sandy Cream #FFDEAA · Light Gray #E5E5E5
   Tipografia: Cinzel (display) · Cormorant Garamond (elegante) · Inter (corpo)
   ============================================================ */

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --teal:        #1A4448;
  --teal-mid:    #245158;
  --teal-light:  #2e6470;
  --teal-dark:   #0e2d30;
  --teal-deep:   #091c1e;
  --cream:       #FFDEAA;
  --cream-dark:  #e8c07a;
  --cream-pale:  #fff8ec;
  --gray:        #E5E5E5;
  --off-white:   #f7f6f3;
  --white:       #ffffff;
  --text-dark:   #1c1c1c;
  --text-mid:    #464646;
  --text-light:  #888888;

  --ff-display:  'Cinzel', 'Georgia', serif;
  --ff-elegant:  'Cormorant Garamond', 'Georgia', serif;
  --ff-body:     'Inter', system-ui, sans-serif;

  --ease:        cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --dur:         0.45s;

  --shadow-xs:   0 1px 4px rgba(26,68,72,.07);
  --shadow-sm:   0 4px 16px rgba(26,68,72,.10);
  --shadow-md:   0 10px 40px rgba(26,68,72,.14);
  --shadow-lg:   0 24px 72px rgba(26,68,72,.20);

  --r-sm:        8px;
  --r-md:        16px;
  --r-lg:        24px;
  --r-xl:        36px;
}

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

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

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a        { color: inherit; text-decoration: none; }
ul       { list-style: none; }
button   { cursor: pointer; font: inherit; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: min(90%, 1180px);
  margin-inline: auto;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  border: 2px solid transparent;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  box-shadow: var(--shadow-md);
}

.btn-cream {
  background: var(--cream);
  color: var(--teal);
  border-color: var(--cream);
  font-weight: 600;
}
.btn-cream:hover {
  background: var(--cream-dark);
  box-shadow: 0 8px 32px rgba(255,222,170,.45);
}

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

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,222,170,.6);
}
.btn-outline-cream:hover {
  background: rgba(255,222,170,.1);
  border-color: var(--cream);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: rgba(26,68,72,.4);
}
.btn-outline-teal:hover {
  background: rgba(26,68,72,.07);
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

/* ── TYPOGRAPHY ATOMS ──────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: .75rem;
}
.section-eyebrow--light { color: rgba(255,222,170,.75); }

.section-title {
  font-family: var(--ff-elegant);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--teal);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.section-title--light { color: var(--white); }

.section-rule {
  width: 56px;
  height: 2px;
  background: var(--teal);
  margin-block: 1.5rem 2rem;
  position: relative;
}
.section-rule::after {
  content: '';
  position: absolute;
  left: 68px;
  top: 0;
  width: 18px;
  height: 2px;
  background: inherit;
  opacity: .35;
}
.section-rule--cream { background: var(--cream); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-rule {
  margin-inline: auto;
}
.section-header .section-rule::after {
  left: 50%;
  transform: translateX(40px);
}

.section-desc {
  font-size: .975rem;
  color: rgba(255,255,255,.55);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.85;
  margin-top: -1rem;
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-up.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .30s; }
.delay-3 { transition-delay: .45s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  padding: 1.4rem 0;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              padding var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-xs);
  padding: .75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  transition: height var(--dur) var(--ease), opacity .2s ease;
}
.navbar.scrolled .logo-img { height: 36px; }

/* links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-size: .825rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.88);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
  transition: width .3s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--text-mid); }
.navbar.scrolled .nav-link::after { background: var(--teal); }

/* CTA pill */
.nav-cta {
  padding: .55rem 1.4rem;
  background: var(--cream);
  color: var(--teal);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.nav-cta:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--teal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--teal);
  background-image: url('../assets/bg.webp');
  background-size: cover;
  background-position: center;
}

/* layered bg — semi-transparent so marble shows through */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 55%, rgba(255,222,170,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(255,222,170,.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 70% at 70% 90%, rgba(14,45,48,.55) 0%, transparent 55%),
    linear-gradient(155deg, rgba(36,81,88,.78) 0%, rgba(26,68,72,.74) 40%, rgba(14,45,48,.82) 100%);
}

/* subtle diagonal lines texture */
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      115deg,
      transparent 0px,
      transparent 18px,
      rgba(255,222,170,.018) 18px,
      rgba(255,222,170,.018) 19px
    );
  opacity: 1;
}

/* large watermark */
.hero-watermark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(260px, 44vw, 600px);
  user-select: none;
  pointer-events: none;
  will-change: transform;
}
.hero-watermark img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .07;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-block: 7rem 5rem;
}

/* hero text */
.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .75;
  display: block;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--ff-elegant);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.025em;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--cream);
}

.hero-rule {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--cream), transparent);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: var(--ff-elegant);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}

.hero-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.9;
  margin-bottom: 2.75rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-frame {
  position: relative;
  width: 360px;
  max-width: 100%;
  aspect-ratio: 3/4;
}

.hero-frame-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(255,222,170,.1), rgba(255,255,255,.04));
  border: 1px solid rgba(255,222,170,.2);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  backdrop-filter: blur(6px);
  overflow: hidden;
  position: relative;
}
.hero-frame-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,45,48,.55) 0%,
    rgba(14,45,48,.15) 35%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* corner deco lines */
.hero-frame-deco {
  position: absolute;
  width: 72px;
  height: 72px;
}
.hero-frame-deco--tl {
  top: -12px; left: -12px;
  border-top: 2px solid rgba(255,222,170,.35);
  border-left: 2px solid rgba(255,222,170,.35);
  border-radius: var(--r-sm) 0 0 0;
}
.hero-frame-deco--br {
  bottom: -12px; right: -12px;
  border-bottom: 2px solid rgba(255,222,170,.35);
  border-right: 2px solid rgba(255,222,170,.35);
  border-radius: 0 0 var(--r-sm) 0;
}

/* floating badges */
.hero-badge {
  position: absolute;
  left: -30px;
  top: 50px;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,222,170,.2);
  border-radius: var(--r-md);
  padding: .8rem 1.1rem;
  color: var(--white);
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-badge--bottom {
  left: auto;
  right: -30px;
  top: auto;
  bottom: 60px;
  animation-delay: -2s;
}
.hero-badge svg { color: var(--cream); flex-shrink: 0; }
.badge-num   { font-size: .85rem; font-weight: 600; line-height: 1.2; }
.badge-label { font-size: .65rem; opacity: .6; letter-spacing: .06em; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.35);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; transform: scaleY(1);   }
  50%       { opacity: .8;  transform: scaleY(1.15); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding-block: 8rem;
  position: relative;
  overflow: hidden;
  background: var(--cream-pale);
}

.about-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 100%  0%, rgba(26,68,72,.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at  0% 100%, rgba(255,222,170,.18) 0%, transparent 50%);
  pointer-events: none;
}
.about-bg-deco::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    108deg,
    transparent 0px,
    transparent 32px,
    rgba(26,68,72,.014) 32px,
    rgba(26,68,72,.014) 33px
  );
}
.about-bg-deco::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 180% 4% at 25% 38%, rgba(255,222,170,.1) 0%, transparent 100%),
    radial-gradient(ellipse 130% 3% at 72% 68%, rgba(26,68,72,.055) 0%, transparent 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

/* credential cards */
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cred-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1.35rem 1.25rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  border-left: 3px solid var(--cream);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.cred-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.cred-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(26,68,72,.06);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.cred-icon svg { width: 22px; height: 22px; }

.cred-label {
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .2rem;
}
.cred-value {
  font-family: var(--ff-elegant);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--teal);
  line-height: 1.3;
}

/* bio */
.about-bio { position: relative; }

.bio-heading {
  font-family: var(--ff-elegant);
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.bio-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 2.5rem;
}

/* timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.75rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gray);
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding-bottom: 1.75rem;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream);
  border: 2.5px solid var(--teal);
  flex-shrink: 0;
}

.timeline-title {
  font-family: var(--ff-elegant);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: .25rem;
}
.timeline-desc {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding-block: 8rem;
  background-color: var(--teal);
  background-image: url('../assets/bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 20% 20%, rgba(255,222,170,.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 80% 80%, rgba(255,222,170,.04) 0%, transparent 50%),
    linear-gradient(rgba(14,45,48,.88), rgba(14,45,48,.88));
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* service card */
.srv-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,222,170,.12);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease),
              background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.srv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,222,170,.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.srv-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,222,170,.3);
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.srv-card:hover::before { opacity: 1; }

.srv-card--featured {
  border-color: rgba(255,222,170,.3);
  background: rgba(255,222,170,.055);
}
.srv-card--featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  opacity: .5;
}

.srv-icon {
  width: 56px;
  height: 56px;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: .8;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.srv-card:hover .srv-icon { opacity: 1; transform: scale(1.05); }

.srv-badge {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal);
  background: var(--cream);
  padding: .25rem .8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.srv-title {
  font-family: var(--ff-elegant);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .9rem;
  line-height: 1.25;
}

.srv-desc {
  font-size: .855rem;
  color: rgba(255,255,255,.52);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.srv-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.srv-list li {
  font-size: .8rem;
  color: rgba(255,222,170,.7);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.srv-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,222,170,.35);
  font-size: .7rem;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding-block: 7rem;
  background: var(--cream-pale);
  position: relative;
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(26,68,72,.09) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 90% 50%, rgba(255,222,170,.22) 0%, transparent 50%);
  pointer-events: none;
}
/* diagonal line texture */
.cta-band-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    108deg,
    transparent 0px,
    transparent 32px,
    rgba(26,68,72,.014) 32px,
    rgba(26,68,72,.014) 33px
  );
}
/* marble-like vein texture */
.cta-band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 140% 5% at 30% 30%, rgba(26,68,72,.05) 0%, transparent 100%),
    radial-gradient(ellipse 100% 4% at 70% 70%, rgba(255,222,170,.08) 0%, transparent 100%);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.cta-band-logo-img {
  width: 200px;
  opacity: .9;
  filter: none;
}

.cta-band-eyebrow {
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream-dark);
  margin-bottom: .75rem;
  display: block;
}

.cta-band-title {
  font-family: var(--ff-elegant);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--teal);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cta-band-desc {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 2.25rem;
}

.cta-band-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background-color: var(--teal-dark);
  background-image: url('../assets/bg.webp');
  background-size: cover;
  background-position: center 65%;
  padding-block: 3.5rem;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(14,45,48,.8);
  background-image: repeating-linear-gradient(
    108deg,
    transparent 0px,
    transparent 32px,
    rgba(255,222,170,.025) 32px,
    rgba(255,222,170,.025) 33px
  );
}

.stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding-inline: 1.5rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 44px;
  width: 1px;
  background: rgba(255,222,170,.2);
}

.stat-num {
  font-family: var(--ff-elegant);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -.01em;
}

.stat-label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,222,170,.2);
  }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stats-bar { padding-block: 2.5rem; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: 8rem;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--r-md);
  background: var(--off-white);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.contact-card:hover {
  transform: translateX(5px);
  background: rgba(26,68,72,.05);
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.contact-icon svg { width: 22px; height: 22px; }

.contact-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .2rem;
}
.contact-value {
  font-size: .95rem;
  font-weight: 500;
  color: var(--teal);
  transition: color .3s;
}
a.contact-value:hover { color: var(--teal-light); }

.social-block { margin-top: .5rem; }
.social-title {
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.social-row {
  display: flex;
  gap: .65rem;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-3px);
}

.contact-cta { width: 100%; justify-content: center; margin-top: .5rem; }

/* map */
.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray);
}
.map-wrapper iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background:
    linear-gradient(rgba(9,28,30,.88), rgba(9,28,30,.88)),
    url('../assets/bg.webp') center bottom / cover;
  position: relative;
}

.footer-top { padding-block: 5rem 4rem; }

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-family: var(--ff-elegant);
  font-style: italic;
  font-size: .95rem;
  color: rgba(255,255,255,.4);
  margin-bottom: .4rem;
}
.footer-crm {
  font-size: .72rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .06em;
}

.footer-nav-title {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
  display: block;
}

.footer-nav ul,
.footer-contact-col ul {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer-nav a,
.footer-contact-col a,
.footer-contact-col li {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  transition: color .3s;
}
.footer-nav a:hover,
.footer-contact-col a:hover { color: var(--cream); }

.footer-bottom { padding-block: 1.5rem; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p {
  font-size: .72rem;
  color: rgba(255,255,255,.2);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--text-dark);
  color: var(--white);
  font-size: .75rem;
  padding: .45rem .9rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .3s, transform .3s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text-dark);
  border-right-width: 0;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container  { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-frame      { width: 300px; }
  .hero-badge      { left: -16px; }
  .hero-badge--bottom { right: -16px; }

  .about-grid      { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-credentials { grid-template-columns: repeat(3, 1fr); }

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

  .cta-band-inner  { gap: 1.5rem; }

  .contact-grid    { grid-template-columns: 340px 1fr; gap: 3rem; }

  .footer-top-inner { grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* nav */
  .hamburger { display: flex; }

  /* logo menor no mobile */
  .logo-img { height: 30px; }
  .navbar.scrolled .logo-img { height: 26px; }

  .nav-menu {
    position: fixed;
    inset-block: 0;
    inset-inline-end: -100%;
    width: min(80vw, 300px);
    background: var(--teal);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: inset-inline-end .4s var(--ease);
    box-shadow: -8px 0 48px rgba(0,0,0,.3);
  }
  .nav-menu.open { inset-inline-end: 0; }
  .nav-link { color: rgba(255,255,255,.9); font-size: 1.1rem; }
  .navbar.scrolled .nav-link { color: rgba(255,255,255,.9); }

  /* hero */
  .hero-container { grid-template-columns: 1fr; text-align: center; padding-block: 7rem 4rem; }
  .hero-visual    { display: none; }
  .hero-rule      { margin-inline: auto; }
  .hero-actions   { justify-content: center; }

  /* about */
  .about-credentials { grid-template-columns: 1fr 1fr; }

  /* services */
  .services-grid  { grid-template-columns: 1fr; }

  /* cta */
  .cta-band-logo-img { width: 160px; }
  .cta-band-actions { justify-content: center; }

  /* contact */
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }

  /* footer */
  .footer-top-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title     { font-size: 3rem; }
  .hero-actions   { flex-direction: column; }
  .btn            { justify-content: center; width: 100%; }

  .about-credentials { grid-template-columns: 1fr; }

  .cta-band-actions { flex-direction: column; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }

  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
}

/* ============================================================
   UTILITY — hide helper
   ============================================================ */
.br-desktop { display: none; }
@media (min-width: 769px) { .br-desktop { display: inline; } }
