/* ═══════════════════════════════════════════════════════
   ODONTO PRIME — SITE INSTITUCIONAL
   style.css — Design System + All Sections
═══════════════════════════════════════════════════════ */

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

:root {
  --gold:        #CE9106;
  --gold-mid:    #E8A812;
  --gold-light:  #F5C842;
  --gold-pale:   #FDF5E0;
  --gold-glow:   rgba(206,145,6,0.15);
  --blue:        #13489A;
  --blue-mid:    #1A5AB8;
  --blue-light:  #2470D4;
  --blue-pale:   #E8EFF9;
  --dark:        #0D1B2A;
  --dark2:       #152236;
  --dark3:       #0A1420;
  --gray:        #64748B;
  --gray-lt:     #94A3B8;
  --white:       #FFFFFF;
  --light:       #F9F7F2;
  --light2:      #F3F0E8;
  --border:      #E5DFC8;
  --wpp:         #25D366;
  --font:        'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--dark); overflow-x: hidden; }

/* ─── GLOBAL KEYFRAMES ─── */
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-28px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(28px)} to{opacity:1;transform:translateX(0)} }
@keyframes shimmerTransform { 0%{transform:translateX(0)} 100%{transform:translateX(400%)} }
@keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes blobMorph {
  0%,100%{border-radius:60% 40% 30% 70%/60% 30% 70% 40%;}
  25%{border-radius:30% 60% 70% 40%/50% 60% 30% 60%;}
  50%{border-radius:50% 60% 30% 40%/40% 30% 70% 50%;}
  75%{border-radius:70% 30% 50% 60%/30% 50% 60% 40%;}
}

/* ─── AURORA ANIMATION ─── */
@keyframes auroraSway {
  0%   { transform: translate(-5%, -5%) scale(1); }
  50%  { transform: translate(3%, 8%)  scale(1.08); }
  100% { transform: translate(5%, -3%) scale(1.04); }
}
@keyframes auroraSwayReverse {
  0%   { transform: translate(5%, 8%)  scale(1.05); }
  50%  { transform: translate(-4%, -6%) scale(1); }
  100% { transform: translate(2%, 5%)  scale(1.07); }
}

/* ─── TYPOGRAPHY ─── */
.stag {
  display: inline-block;
  background: rgba(206,145,6,0.1);
  border: 1px solid rgba(206,145,6,0.3);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.stag.light {
  background: rgba(245,200,66,0.15);
  border-color: rgba(245,200,66,0.35);
  color: var(--gold-light);
}
.stitle {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
}
.stitle em { font-style: normal; color: var(--gold); }
.stitle.white { color: #fff; }
.stitle.white em {
  background: linear-gradient(120deg, var(--gold-light), #FFD97D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sdesc { font-size: 17px; color: var(--gray); line-height: 1.75; max-width: 600px; margin: 16px auto 0; }
.sdesc.white { color: rgba(255,255,255,0.5); }
.section-hd { text-align: center; margin-bottom: 64px; }

/* ─── BUTTONS ─── */
.btn-wpp {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wpp); color: #fff;
  padding: 16px 36px; border-radius: 100px;
  font-size: 15px; font-weight: 800; text-decoration: none;
  transition: all .3s; box-shadow: 0 8px 32px rgba(37,211,102,0.35); white-space: nowrap;
}
.btn-wpp:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,0.55); }
.btn-wpp svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--dark);
  padding: 15px 38px; border-radius: 100px; font-size: 15px; font-weight: 700;
  text-decoration: none; border: 1.5px solid var(--border); transition: all .3s;
}
.btn-outline:hover { background: var(--light2); border-color: var(--gold); color: var(--gold); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  padding: 15px 38px; border-radius: 100px; font-size: 15px; font-weight: 700;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.35); transition: all .3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ═══ NAVIGATION ═══ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 76px; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.05);
  transition: background .3s, box-shadow .3s;
}
#nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 0 rgba(206,145,6,0.2), 0 8px 40px rgba(0,0,0,0.1);
}
.nav-logo img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { color: var(--dark); text-decoration: none; font-size: 14px; font-weight: 700; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-mid));
  color: #fff !important; padding: 10px 26px; border-radius: 100px;
  font-size: 14px !important; font-weight: 800 !important;
  box-shadow: 0 4px 20px rgba(206,145,6,0.35); white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(206,145,6,0.55) !important; color: #fff !important; }

/* Dropdown */
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
  color: var(--dark); font-size: 14px; font-weight: 700;
  transition: color .2s; padding: 0; background: none; border: none; font-family: var(--font);
}
.nav-dropdown-trigger:hover { color: var(--gold); }
.nav-dropdown-trigger svg { width: 14px; height: 14px; transition: transform .3s; flex-shrink: 0; }
.nav-dropdown-item:hover .nav-dropdown-trigger svg,
.nav-links > li:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.98); border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.12), 0 4px 24px rgba(0,0,0,0.06);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 12px; min-width: 240px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
}
.nav-links > li:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::after {
  content: ''; position: absolute; top: -24px; left: 0; right: 0; height: 24px; background: transparent;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; background: rgba(255,255,255,0.98);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; border-radius: 12px;
  text-decoration: none; color: var(--dark);
  font-size: 13px; font-weight: 700;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-dropdown-link:hover { background: var(--gold-pale); color: var(--gold); }
.nav-dropdown-link .dd-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-pale), #faefc9);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; transition: transform .2s;
}
.nav-dropdown-link:hover .dd-icon { transform: scale(1.1); }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 8px 4px; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }

.nav-mobile {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: rgba(255,255,255,0.99); backdrop-filter: blur(20px);
  z-index: 999; padding: 24px 32px 32px;
  border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 0; max-height: calc(100vh - 76px); overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--dark); text-decoration: none; font-size: 16px; font-weight: 700; padding: 16px 0; border-bottom: 1px solid var(--border); display: block; transition: color .2s; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-section-title { font-size: 11px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .14em; padding: 16px 0 8px; border-bottom: none !important; }
.nav-mobile-sub { padding: 12px 0 12px 16px !important; font-size: 14px !important; font-weight: 600 !important; color: var(--gray) !important; border-bottom: 1px solid rgba(229,223,200,0.5) !important; }
.nav-mobile-sub:hover { color: var(--gold) !important; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* ─── AURORA BACKGROUND ─── */
.aurora-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* The aurora element is intentionally LARGER than its container so
   no hard edge is ever visible during the translate/scale animation.
   Opacities are kept very low so the glow reads as a warm atmospheric
   haze — not a heavy yellow patch behind dark text. */
.aurora-inner {
  position: absolute;
  top: -40%; left: -40%; right: -40%; bottom: -40%;
  background:
    radial-gradient(ellipse 70% 55% at 55% 25%,  rgba(250, 220, 100, 0.09) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 25% 50%,  rgba(245, 195, 50,  0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 78% 18%,  rgba(240, 190, 40,  0.06) 0%, transparent 60%);
  will-change: transform;
  animation: auroraSway 18s ease-in-out infinite alternate;
}

.aurora-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 80% 55%,  rgba(252, 215, 80,  0.07) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 20% 30%,  rgba(245, 200, 66,  0.05) 0%, transparent 60%);
  animation: auroraSwayReverse 24s ease-in-out infinite alternate;
  will-change: transform;
}


@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(40px) scale(1.1); }
}

.hero-container {
  width: 100%; max-width: 1200px; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
}

.hero-content {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease both;
  z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(206, 145, 6, 0.3);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--gold); padding: 8px 24px; border-radius: 100px;
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 32px; box-shadow: 0 4px 12px rgba(206, 145, 6, 0.05);
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); animation: pulse 1.8s ease-in-out infinite; box-shadow: 0 0 10px var(--gold);
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(0.75)} }

.hero h1 {
  font-size: clamp(40px, 6vw, 76px); font-weight: 900; line-height: 1.05;
  color: var(--dark); margin-bottom: 24px; letter-spacing: -.03em;
}
.hero h1 .gradient {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-mid) 70%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 20px; color: var(--gray); line-height: 1.6; max-width: 600px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
}

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.05); width: 100%;
}
.hstat { flex: 1; min-width: 130px; text-align: center; padding: 0 20px; border-right: 1px solid rgba(0,0,0,0.05); }
.hstat:last-child { border-right: none; }
.hstat .num {
  font-size: 32px; font-weight: 900; line-height: 1.1;
  background: linear-gradient(120deg, var(--gold), var(--gold-mid));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px;
}
.hstat .lbl { font-size: 11px; font-weight: 800; color: var(--gray-lt); text-transform: uppercase; letter-spacing: .08em; }

/* ══ Hero Showcase (Floating App-like Window) ══ */
.hero-showcase {
  position: relative; width: 100%; max-width: 1000px;
  margin-top: 60px;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s 0.2s ease both;
  z-index: 2;
}

.hero-showcase-glow {
  position: absolute; top: 20%; left: 10%; right: 10%; bottom: 10%;
  background: linear-gradient(145deg, rgba(206,145,6,0.3), rgba(19,72,154,0.15));
  filter: blur(80px); z-index: -1;
}

.hero-card {
  width: 100%;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.12), 0 12px 32px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.7);
  background: white; position: relative;
  aspect-ratio: 16/9; /* Set aspect ratio to replace rigid height */
}
.hero-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  transition: transform .8s ease;
}
.hero-card:hover img { transform: scale(1.02); }

.hero-float-badge {
  position: absolute;
  background: rgba(255,255,255,0.92); border-radius: 20px;
  padding: 16px 24px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14), 0 2px 8px rgba(206,145,6,0.1);
  border: 1px solid rgba(255,255,255,0.7);
  min-width: 220px; z-index: 10;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  animation: floatY 4s ease-in-out infinite;
}
.hero-float-badge.badge-left { bottom: -20px; left: -30px; }

.hfb-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-mid));
  display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff;
  box-shadow: 0 8px 20px rgba(206,145,6,0.3);
}
.hfb-text strong { display: block; font-size: 16px; font-weight: 900; color: var(--dark); line-height: 1.2; }
.hfb-text span { font-size: 11px; font-weight: 800; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }

.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 5; }
.hero-scroll-hint span { font-size: 10px; font-weight: 800; color: var(--gray-lt); letter-spacing: .15em; text-transform: uppercase; }
.scroll-line { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* Hero responsive */
@media (max-width: 900px) {
  .hero-container { padding: 0 16px; }
  .hero h1 { font-size: clamp(34px, 10vw, 44px); }
  .hstat { min-width: 45%; padding: 12px 10px; border-right: none; }
  .hero-stats { justify-content: space-around; }
  .hero-showcase { margin-top: 40px; }
  /* On tablet, keep badge below image */
  .hero-float-badge.badge-left { bottom: -10px; left: 10px; right: auto; min-width: auto; }
  .hero-scroll-hint { display: none; }
}

/* ═══ PROOF BAR ═══ */
.proof-bar {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 50%, var(--blue-light) 100%);
  padding: 22px 40px; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.proof-bar::after {
  content: ''; position: absolute; top: 0; left: -100%; bottom: 0; width: 50%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  animation: shimmerTransform 4s ease-in-out infinite;
  pointer-events: none;
}
.pb-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.92); font-size: 14px; font-weight: 800; transition: transform .25s; }
.pb-item:hover { transform: scale(1.06); }
.pb-item svg { opacity: .8; flex-shrink: 0; }

/* ═══ DOR / TRANSFORMAÇÃO ═══ */
.pain-section { padding: 120px 40px; background: var(--white); position: relative; overflow: hidden; }
.pain-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(206,145,6,0.05) 0%, transparent 70%); pointer-events: none;
}
.pain-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pain-text .stag { margin-bottom: 20px; }
.pain-text h2 { font-size: clamp(30px, 3.5vw, 50px); font-weight: 900; color: var(--dark); line-height: 1.12; margin-bottom: 24px; }
.pain-text h2 em { font-style: normal; color: var(--gold); }
.pain-text > p { font-size: 17px; color: var(--gray); line-height: 1.8; margin-bottom: 36px; }
.pain-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.pain-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px; background: var(--light); border-radius: 16px;
  border: 1px solid var(--border); transition: border-color .3s, box-shadow .3s;
}
.pain-item:hover { border-color: rgba(206,145,6,0.4); box-shadow: 0 8px 32px rgba(206,145,6,0.08); }
.pain-ico {
  font-size: 24px; width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-mid));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.pain-item-text strong { display: block; font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.pain-item-text span { font-size: 13px; color: var(--gray); line-height: 1.6; }
.pain-image { position: relative; }
.pain-image-main { border-radius: 28px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.12); border: 2px solid rgba(206,145,6,0.15); aspect-ratio: 4/5; }
.pain-image-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.pain-floating-card {
  position: absolute; bottom: -28px; left: -28px;
  background: #fff; border-radius: 20px; padding: 18px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px; min-width: 220px;
}
.pfc-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold), var(--gold-mid)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.pfc-text strong { display: block; font-size: 20px; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 3px; }
.pfc-text span { font-size: 12px; color: var(--gray); font-weight: 600; }

/* ═══ HIGH TICKET HIGHLIGHTS ═══ */
.ht-section { padding: 120px 40px; background: var(--white); position: relative; overflow: hidden; }
.ht-section.alt-bg { background: var(--light); }
.ht-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ht-image { position: relative; border-radius: 28px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.1); border: 1px solid rgba(206,145,6,0.15); aspect-ratio: 4/4.5; }
.ht-image img { width: 100%; height: 100%; object-fit: cover; }
.ht-badge { position: absolute; bottom: -20px; left: 30px; background: #fff; padding: 16px 24px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); border: 1px solid var(--border); display: flex; flex-direction: column; min-width: 200px; animation: floatY 4s infinite ease-in-out; }
.ht-badge strong { font-size: 16px; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.ht-badge span { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }

.ht-text .stag { margin-bottom: 20px; }
.ht-text h2 { font-size: clamp(30px, 3.5vw, 42px); font-weight: 900; color: var(--dark); line-height: 1.15; margin-bottom: 24px; }
.ht-text h2 em { font-style: normal; color: var(--gold); }
.ht-text p { font-size: 17px; color: var(--gray); line-height: 1.7; margin-bottom: 32px; }
.ht-benefits { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 44px; }
.ht-benefits li { font-size: 15px; color: var(--gray); display: flex; align-items: flex-start; gap: 14px; line-height: 1.5; }
.ht-benefits span { background: linear-gradient(135deg, var(--gold), var(--gold-mid)); color: #fff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; flex-shrink: 0; box-shadow: 0 4px 12px rgba(206,145,6,0.3); }
.ht-benefits strong { color: var(--dark); font-weight: 800; }

/* ═══ SERVIÇOS ═══ */
.services-section { padding: 120px 40px; background: var(--dark); position: relative; overflow: hidden; }
.services-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(19,72,154,0.2) 0%, transparent 60%); }
.services-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px; padding: 36px 32px; position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s, background .3s, box-shadow .35s;
  cursor: default;
}
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); opacity: 0; transition: opacity .3s; }
.svc-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(206,145,6,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.svc-card:hover { transform: translateY(-10px); border-color: rgba(206,145,6,0.35); background: rgba(255,255,255,0.08); box-shadow: 0 24px 60px rgba(0,0,0,0.2); }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  font-size: 36px; width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(206,145,6,0.25), rgba(245,200,66,0.15));
  border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  border: 1px solid rgba(206,145,6,0.2);
  transition: transform .35s, box-shadow .35s;
}
.svc-card:hover .svc-icon { transform: scale(1.12) rotate(-3deg); box-shadow: 0 8px 24px rgba(206,145,6,0.25); }
.svc-card h3 { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.svc-card p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 24px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag { font-size: 11px; font-weight: 700; color: var(--gold-light); background: rgba(206,145,6,0.12); border: 1px solid rgba(206,145,6,0.25); padding: 4px 12px; border-radius: 100px; }

/* ═══ ANTES / DEPOIS ═══ */
.transform-section { padding: 120px 40px; background: var(--light); }
.ba-card { max-width: 960px; margin: 0 auto; background: var(--white); border-radius: 32px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.1); border: 1px solid var(--border); }
.ba-head { background: linear-gradient(135deg, var(--dark), var(--dark2)); padding: 24px 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ba-head h3 { color: #fff; font-size: 19px; font-weight: 900; }
.ba-head p { color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 3px; }
.ba-hint { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 700; white-space: nowrap; }
.ba-slider { position: relative; aspect-ratio: 16/7; cursor: ew-resize; user-select: none; overflow: hidden; touch-action: none; }
.ba-after { position: absolute; inset: 0; }
.ba-after img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.ba-before { position: absolute; top: 0; left: 0; bottom: 0; overflow: hidden; width: 50%; }
.ba-before img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; min-width: unset; max-width: unset; }
.ba-label { position: absolute; top: 16px; z-index: 40; padding: 7px 16px; border-radius: 100px; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; pointer-events: none; }
.ba-lb { left: 16px; background: rgba(13,27,42,.85); border: 1px solid rgba(255,255,255,.15); color: #fff; }
.ba-la { right: 16px; background: linear-gradient(135deg, var(--gold), var(--gold-mid)); color: #fff; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; z-index: 30; width: 4px; margin-left: -2px; background: rgba(255,255,255,.95); box-shadow: 0 0 16px rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; pointer-events: none; }
.ba-btn { width: 52px; height: 52px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(0,0,0,.3); border: 2px solid rgba(206,145,6,.4); flex-shrink: 0; }
.ba-btn svg { width: 24px; height: 24px; color: var(--gold); }
.ba-foot { padding: 24px 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ba-foot p { font-size: 15px; color: var(--gray); }
.ba-foot p strong { color: var(--dark); }

/* ═══ PROCESSO ═══ */
.process-section { padding: 120px 40px; background: var(--white); }
.process-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); opacity: 0.2; }
.pstep-card { background: var(--light); border: 1px solid var(--border); border-radius: 24px; padding: 32px 24px; text-align: center; position: relative; transition: transform .3s, box-shadow .3s, border-color .3s; }
.pstep-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.07); border-color: rgba(206,145,6,0.4); }
.pnum { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-mid)); color: #fff; font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(206,145,6,0.4); position: relative; z-index: 2; }
.pstep-card h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.pstep-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ═══ EQUIPE ═══ */
.team-section { padding: 120px 40px; background: var(--dark); position: relative; overflow: hidden; }
.team-section::before { content: ''; position: absolute; bottom: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(19,72,154,0.12) 0%, transparent 70%); pointer-events: none; }
.team-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.team-card { border-radius: 32px; overflow: hidden; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: transform .3s, border-color .3s, box-shadow .3s; }
.team-card:hover { transform: translateY(-8px); border-color: rgba(206,145,6,0.35); box-shadow: 0 32px 80px rgba(0,0,0,0.3); }
.team-photo { height: 340px; overflow: hidden; position: relative; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .6s; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, transparent 55%); }
.team-photo-badge { position: absolute; bottom: 18px; left: 18px; background: linear-gradient(135deg, var(--gold), var(--gold-mid)); color: #fff; padding: 6px 16px; border-radius: 100px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.team-body { padding: 28px 32px; }
.team-body h3 { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.team-body .role { font-size: 13px; color: var(--gold-light); font-weight: 700; margin-bottom: 14px; letter-spacing: .04em; }
.team-body p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 20px; }
.team-credentials { display: flex; flex-wrap: wrap; gap: 8px; }
.cred-tag { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 5px 12px; border-radius: 100px; }
.team-bottom { max-width: 1000px; margin: 48px auto 0; text-align: center; }
.team-bottom p { font-size: 17px; color: rgba(255,255,255,0.4); margin-bottom: 28px; }

/* ═══ AVALIAÇÕES GOOGLE ═══ */
.reviews-section { padding: 120px 40px; background: var(--light); overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 56px; }
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1.5px solid #e0e0e0; border-radius: 100px; padding: 8px 20px; font-size: 13px; font-weight: 800; color: var(--dark); margin-bottom: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.google-badge .stars { color: #FBBC04; font-size: 16px; }
.reviews-carousel-wrapper { position: relative; }
.reviews-track-outer { overflow: hidden; border-radius: 20px; padding: 10px 0; }
.reviews-track { display: flex; gap: 20px; transition: transform .4s cubic-bezier(.4,0,.2,1); align-items: flex-start; }
.review-img-card { flex: 0 0 calc(33.333% - 14px); border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.06); background: #1a1b2e; cursor: pointer; transition: transform .3s, box-shadow .3s; }
.review-img-card:hover { transform: scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,0.25); }
.review-img-card img { width: 100%; height: auto; display: block; vertical-align: top; }
.review-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--light2), #ede9df); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 28px; text-align: center; }
.review-placeholder .review-stars { font-size: 24px; color: #FBBC04; letter-spacing: 2px; }
.review-placeholder p { font-size: 13px; color: var(--gray); font-weight: 600; line-height: 1.6; font-style: italic; }
.review-placeholder .rp-name { font-size: 14px; font-weight: 800; color: var(--dark); margin-top: 6px; }
.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 32px; }
.rev-btn { width: 48px; height: 48px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--dark); transition: all .2s; }
.rev-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.rev-dots { display: flex; gap: 6px; }
.rev-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: all .3s; cursor: pointer; }
.rev-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); display: none; align-items: center; justify-content: center; padding: 32px; backdrop-filter: blur(8px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 16px; box-shadow: 0 40px 100px rgba(0,0,0,0.5); object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 28px; color: #fff; font-size: 32px; cursor: pointer; opacity: 0.7; transition: opacity .2s; background: none; border: none; line-height: 1; }
.lightbox-close:hover { opacity: 1; }

/* ═══ VÍDEO DEPOIMENTO ═══ */
.video-section { padding: 120px 40px; background: var(--dark2); position: relative; overflow: hidden; }
.video-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(19,72,154,0.15) 0%, transparent 70%); pointer-events: none; }
.video-inner { max-width: 920px; margin: 0 auto; }
.video-header { text-align: center; margin-bottom: 52px; }
.video-container { position: relative; border-radius: 28px; overflow: hidden; background: var(--dark3); aspect-ratio: 16/9; box-shadow: 0 40px 100px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.06); }
.video-thumb { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.5); }
.video-thumb::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(19,72,154,0.3) 0%, rgba(13,27,42,0.4) 100%); }
.play-btn { position: absolute; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 16px; transition: transform .3s; }
.video-thumb:hover .play-btn { transform: scale(1.05); }
.play-circle { width: 84px; height: 84px; border-radius: 50%; background: rgba(206,145,6,0.2); backdrop-filter: blur(12px); border: 2px solid rgba(206,145,6,0.5); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 16px rgba(206,145,6,0.06); }
.play-circle svg { width: 32px; height: 32px; fill: var(--gold-light); margin-left: 4px; }
.play-label { font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.8); letter-spacing: .06em; text-transform: uppercase; }
.video-iframe { display: none; width: 100%; height: 100%; border: none; position: absolute; inset: 0; }
.video-quote { margin-top: 40px; text-align: center; padding: 32px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 24px; }
.video-quote .quote-text { font-size: 20px; color: rgba(255,255,255,0.7); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.video-quote .quote-text strong { color: var(--gold-light); font-style: normal; }
.quote-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.qa-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-mid)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 16px; flex-shrink: 0; }
.qa-info strong { display: block; color: #fff; font-size: 15px; font-weight: 800; }
.qa-info span { color: rgba(255,255,255,0.4); font-size: 13px; }
.qa-stars { color: #FBBC04; font-size: 14px; margin-top: 4px; }

/* ═══ DIFERENCIAIS ═══ */
.why-section { padding: 120px 40px; background: var(--white); }
.why-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { padding: 36px 32px; border: 1.5px solid var(--border); border-radius: 28px; transition: border-color .3s, box-shadow .3s, transform .3s; position: relative; overflow: hidden; background: var(--white); }
.why-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); opacity: 0; transition: opacity .3s; }
.why-card:hover { border-color: rgba(206,145,6,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.07); transform: translateY(-6px); }
.why-card:hover::after { opacity: 1; }
.why-icon { font-size: 32px; width: 64px; height: 64px; background: linear-gradient(135deg, var(--gold-pale), #faefc9); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; border: 1px solid rgba(206,145,6,0.2); }
.why-card h3 { font-size: 18px; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* ═══ FAQ ═══ */
.faq-section { padding: 120px 40px; background: var(--light); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.fitem { border: 1.5px solid var(--border); border-radius: 18px; overflow: hidden; background: var(--white); transition: border-color .3s, box-shadow .3s; }
.fitem.open { border-color: rgba(206,145,6,0.4); box-shadow: 0 8px 32px rgba(206,145,6,0.08); }
.fq { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; cursor: pointer; font-size: 16px; font-weight: 800; color: var(--dark); user-select: none; }
.ficon { width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold); transition: background .3s, transform .3s; font-weight: 400; }
.fitem.open .ficon { background: var(--gold); color: #fff; transform: rotate(45deg); }
.fa { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.fa-inner { padding: 0 28px 22px; font-size: 15px; color: var(--gray); line-height: 1.8; }

/* ═══ CTA FINAL ═══ */
.cta-section { padding: 140px 40px; background: var(--dark); text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(206,145,6,0.08) 0%, rgba(19,72,154,0.06) 40%, transparent 70%); pointer-events: none; }
.cta-dots { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(255,255,255,.02) 1px, transparent 1px); background-size: 28px 28px; }
.cta-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-section h2 { font-size: clamp(32px, 5vw, 60px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.cta-section h2 em { font-style: normal; background: linear-gradient(120deg, var(--gold-light), #FFD97D); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-section > .cta-content > p { font-size: 18px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 52px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.ctrust { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.3); font-size: 13px; font-weight: 700; }
.ctrust svg { color: var(--gold-light); flex-shrink: 0; }

/* ═══ FOOTER ═══ */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { padding: 80px 40px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 64px; max-width: 1180px; margin: 0 auto; }
.footer-brand img { height: 42px; opacity: 1; margin-bottom: 20px; display: block; }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 24px; max-width: 320px; }
.footer-col h4 { font-size: 14px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a { font-size: 15px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color .2s, transform .2s; display: inline-block; }
.footer-col ul li a:hover { color: var(--gold-light); transform: translateX(6px); }
.footer-col .contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 16px; line-height: 1.5; }
.footer-col .contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; max-width: 1180px; margin: 0 auto; }
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-bottom strong { color: rgba(255,255,255,0.9); font-weight: 800; }

/* ═══ FLOAT BUTTON ═══ */
.float-wpp { position: fixed; bottom: 28px; right: 28px; z-index: 500; width: 64px; height: 64px; background: var(--wpp); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 8px 32px rgba(37,211,102,.5); animation: wppPulse 2.5s ease-in-out infinite; transition: transform .3s; will-change: transform; }
.float-wpp:hover { transform: scale(1.12); animation: none; }
.float-wpp svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wppPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }

/* ═══ SCROLL REVEAL ═══ */
.reveal           { opacity: 0; transform: translateY(36px); transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible   { opacity: 1; transform: translateY(0); }
.reveal-left      { opacity: 0; transform: translateX(-36px); transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right     { opacity: 0; transform: translateX(36px); transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale     { opacity: 0; transform: scale(0.92); transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-delay-1  { transition-delay: .08s; }
.reveal-delay-2  { transition-delay: .16s; }
.reveal-delay-3  { transition-delay: .24s; }
.reveal-delay-4  { transition-delay: .32s; }
.reveal-delay-5  { transition-delay: .40s; }
.reveal-delay-6  { transition-delay: .52s; }

/* ═══ VIDEO PLAYER ═══ */
.video-container video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }

/* ═══ HORÁRIOS ═══ */
.hours-section { padding: 80px 40px; background: var(--dark2); }
.hours-inner { max-width: 900px; margin: 0 auto; }
.hours-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.hour-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 32px 28px; text-align: center; transition: border-color .3s, transform .3s; }
.hour-card:hover { border-color: rgba(206,145,6,0.35); transform: translateY(-4px); }
.hour-card.closed { border-color: rgba(255,255,255,0.05); opacity: .55; }
.hour-day { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-light); margin-bottom: 12px; }
.hour-time { font-size: 26px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 6px; }
.hour-card.closed .hour-time { font-size: 20px; color: rgba(255,255,255,0.3); }
.hour-sub { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 600; }
.hour-badge { display: inline-block; margin-top: 10px; font-size: 11px; padding: 4px 12px; border-radius: 100px; font-weight: 800; }
.hour-badge.open { background: rgba(37,211,102,0.15); color: #25D366; border: 1px solid rgba(37,211,102,0.25); }
.hour-badge.closed-b { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.25); border: 1px solid rgba(255,255,255,0.08); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr; gap: 48px; }
  .pain-image { order: -1; max-width: 520px; margin: 0 auto; width: 100%; }
  .ht-grid { grid-template-columns: 1fr; gap: 48px; }
  .ht-grid.reverse .ht-image { order: -1; }
  .ht-image { max-width: 520px; margin: 0 auto; width: 100%; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { max-width: 600px; grid-template-columns: 1fr; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .review-img-card { flex: 0 0 calc(100% - 10px); }
  .hours-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: clamp(34px, 8vw, 48px); }
  .hero-scroll-hint { display: none; }
  .ba-foot { flex-direction: column; align-items: stretch; text-align: center; }
  .ba-foot .btn-wpp { width: 100%; justify-content: center; margin-top: 12px; }
  .team-bottom .btn-wpp, .svc-cta .btn-wpp { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
}
@media (max-width: 520px) {
  .hero { padding: 110px 16px 50px; }
  .pain-section, .services-section, .transform-section, .process-section,
  .team-section, .reviews-section, .video-section, .why-section,
  .faq-section, .cta-section { padding: 70px 16px; }
  .proof-bar { gap: 16px; padding: 16px; flex-direction: column; align-items: flex-start; }
  .proof-bar::after { display: none; }
  .pb-item { font-size: 13px; width: 100%; }
  #nav { padding: 0 16px; }
  .nav-mobile { padding: 24px 16px 32px; }
  .hero-float-badge { padding: 12px 16px; min-width: auto; }
  .hfb-icon { width: 40px; height: 40px; font-size: 18px; }
  .hfb-text strong { font-size: 14px; }
  /* On mobile, detach badge from absolute so it stops covering the image */
  .hero-showcase { padding-bottom: 70px; }
  .hero-float-badge.badge-left {
    bottom: 12px;
    left: 12px;
    right: 12px;
    justify-content: center;
  }
  .hero-showcase-glow { display: none; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions .btn-wpp, .hero-actions .btn-outline { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 24px; padding-top: 24px; }
  .hstat { width: 45%; min-width: unset; padding: 0; border: none !important; margin: 0; }
  .hstat:last-child { width: 100%; text-align: center; }
  .hstat .num { font-size: 32px; }
  .pain-text h2 { font-size: 28px; }
  .pain-text > p { font-size: 16px; margin-bottom: 24px; }
  .pain-item { padding: 16px; flex-direction: column; gap: 12px; align-items: flex-start; }
  .pain-floating-card { bottom: -20px; left: 10px; right: 10px; padding: 12px 16px; min-width: auto; }
  .ht-section { padding: 80px 20px; }
  .ht-badge { left: 10px; right: 10px; bottom: -20px; padding: 12px 16px; min-width: auto; }
  .ht-text h2 { font-size: 28px; }
  .ht-text p { font-size: 16px; margin-bottom: 24px; }
  .ht-benefits li { font-size: 14px; }
  .stitle { font-size: 28px; }
  .sdesc { font-size: 15px; margin-top: 12px; }
  .section-hd { margin-bottom: 40px; }
  .svc-card { padding: 24px; border-radius: 20px; }
  .svc-card h3 { font-size: 18px; }
  .svc-icon { width: 56px; height: 56px; font-size: 28px; margin-bottom: 16px; }
  .team-photo { height: 280px; }
  .team-body { padding: 24px; }
  .why-card { padding: 24px; border-radius: 20px; }
  .fq { padding: 16px 20px; font-size: 14px; gap: 12px; }
  .ficon { width: 28px; height: 28px; font-size: 18px; margin-left: 0; }
  .fa-inner { padding: 0 20px 16px; font-size: 14px; }
  .cta-section h2 { font-size: 30px; }
  .cta-section > .cta-content > p { margin-bottom: 32px; font-size: 16px; }
  .cta-trust { gap: 16px; flex-direction: column; align-items: center; }
  .video-quote { padding: 24px 16px; }
  .video-quote .quote-text { font-size: 16px; }
  .ba-head { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }
  .ba-foot { padding: 20px; }
  .ba-btn { width: 40px; height: 40px; }
  .ba-btn svg { width: 18px; height: 18px; }
  .btn-wpp { padding: 16px 20px; text-align: center; box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
  .btn-wpp:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
}
