/* ============ TOKENS ============ */
:root {
  --orange: #FF6A00;
  --orange-light: #FF8A33;
  --white: #FFFFFF;
  --bg: #1A1A1A;
  --bg-alt: #141414;
  --card: #232323;
  --card-border: #333333;
  --text-dim: #B9B9B9;
  --text-dimmer: #8A8A8A;

  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --container: 1160px;
  --radius: 14px;
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  line-height: 1.1;
}

p { margin: 0 0 1em; color: var(--text-dim); }

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

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--orange);
  font-size: 13px;
  margin-bottom: .6em;
}

section { position: relative; }

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; fill: currentColor; }
.btn-primary {
  background: var(--orange);
  color: #140a00;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255,106,0,.35);
}
.btn-outline {
  background: transparent;
  border-color: var(--card-border);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-block { width: 100%; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20,20,20,.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand-logo { height: 44px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a:not(.btn) {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s var(--ease);
}
.main-nav a:not(.btn):hover::after { width: 100%; }
.nav-cta { font-size: 13px; padding: 10px 18px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,106,0,.16), transparent 45%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.025) 0 2px, transparent 2px 90px),
    var(--bg);
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: -10%; top: 8%;
  width: 60%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transform: rotate(-8deg);
  opacity: .5;
}
.hero-inner { max-width: 760px; }
.hero h1 {
  font-size: clamp(34px, 5.4vw, 62px);
  margin-bottom: .4em;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 40px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0; padding: 0;
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-dim);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--card-border);
  padding: 8px 14px;
  border-radius: 999px;
}
.trust-strip .icon { width: 16px; height: 16px; stroke: var(--orange); fill: none; }
.trust-strip li svg path[fill="currentColor"] { fill: var(--orange); }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--card-border);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 20px; }
}

/* ============ DASHBOARD / GAUGE SECTION ============ */
.dash-section {
  height: 460vh;
  background: var(--bg-alt);
}
.dash-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.02) 0 2px, transparent 2px 100px),
    radial-gradient(circle at 15% 85%, rgba(255,106,0,.08), transparent 50%),
    var(--bg-alt);
}
.dash-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.dash-copy h2 { font-size: clamp(26px, 3vw, 38px); }
.dash-copy p { max-width: 420px; }

.gauge-wrap { position: relative; }
.gauge { width: 100%; height: auto; overflow: visible; }
#gaugeFill { transition: stroke-dashoffset .1s linear; }

.gauge-stops { position: relative; height: 130px; margin-top: 8px; }
.gauge-stop {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  text-align: center;
}
.gauge-stop.active { opacity: 1; transform: translateY(0); }
.gauge-stop-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.gauge-stop p { max-width: 420px; margin: 0 auto; }

/* ============ SERVICES ============ */
.services { padding: 120px 0; }
.services h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  max-width: 760px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 16px 32px rgba(0,0,0,.35);
}
.service-card.featured {
  background: linear-gradient(160deg, rgba(255,106,0,.16), var(--card) 60%);
  border-color: rgba(255,106,0,.4);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--orange); fill: none; }
.service-icon svg path[fill="currentColor"] { fill: var(--orange); }
.service-card h3 {
  font-size: 19px;
  margin-bottom: .4em;
}
.service-card p { margin: 0; font-size: 14.5px; }

.services-cta {
  margin-top: 56px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px dashed var(--card-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.services-cta p {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--white);
}

/* ============ CONTACT ============ */
.contact { padding: 120px 0; background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.contact-info h2 { font-size: clamp(26px, 3.4vw, 38px); }
.contact-lead { max-width: 420px; }
.contact-list {
  list-style: none;
  margin: 28px 0 34px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 14px;
}
.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-dimmer);
}
.contact-list a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  transition: color .2s var(--ease);
}
.contact-list a:hover { color: var(--orange); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  aspect-ratio: 4 / 3;
  filter: grayscale(.3) contrast(1.1);
}
.contact-map iframe {
  width: 100%; height: 100%; border: 0;
}

/* ============ FOOTER ============ */
.site-footer { padding: 48px 0 32px; }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.footer-logo { height: 40px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
}
.footer-links a:hover { color: var(--orange); }
.footer-note { font-size: 13px; margin: 0; }
.footer-credit { font-size: 11px; color: var(--text-dimmer); margin: 0; }

/* ============ FLOATING WHATSAPP ============ */
.float-whatsapp {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(255,106,0,.4);
  z-index: 90;
  transition: transform .25s var(--ease);
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp .icon { width: 28px; height: 28px; fill: #140a00; }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.78);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .3s var(--ease);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }
.modal h3 { font-size: 22px; }
.modal-sub { font-size: 14px; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.modal-close:hover { border-color: var(--orange); color: var(--orange); }

#diagForm { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
#diagForm label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-dim);
}
#diagForm .optional { text-transform: none; font-weight: 400; color: var(--text-dimmer); letter-spacing: 0; }
#diagForm input,
#diagForm select,
#diagForm textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s var(--ease);
  width: 100%;
}
#diagForm input:focus,
#diagForm select:focus,
#diagForm textarea:focus { border-color: var(--orange); }
#diagForm textarea { resize: vertical; }
.phone-field { display: flex; gap: 8px; }
.phone-field select { flex: 0 0 108px; }
.phone-field input { flex: 1; }
.modal-privacy {
  font-size: 11.5px;
  color: var(--text-dimmer);
  text-align: center;
  margin: 4px 0 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-content { max-width: none; display: flex; flex-direction: column; align-items: center; }
  
  .hero-actions {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    max-width: 420px;
    margin: 24px auto 32px auto;
  }
  .hero-actions .btn {
    flex: 1 1 0% !important;
    font-size: 11.5px !important;
    padding: 10px 4px !important;
    white-space: normal !important;
    text-align: center;
    line-height: 1.2;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50% !important;
  }
  .hero-actions .btn .icon {
    width: 14px;
    height: 14px;
  }
  
  .trust-strip {
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
  }
  .trust-strip li {
    width: auto !important;
    flex: 0 1 auto;
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .hero-profile-card { transform: none; animation: heroCardFloatMobile 6s ease-in-out infinite alternate; margin: 0 auto; }
  
  .dash-inner { grid-template-columns: 1fr; }
  .dash-copy p { max-width: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { aspect-ratio: 16/9; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    z-index: 99;
    isolation: isolate;
    background: #101010;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--card-border);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform .35s var(--ease), opacity .3s var(--ease);
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .main-nav a:not(.btn) { font-size: 16px; }
  .nav-cta { width: 100%; }
  .menu-toggle { display: flex; }

  /* Ajustes do velocímetro para caber no mobile sem cortar */
  .dash-section { height: 560vh; }
  .dash-sticky { padding: 24px 0; }
  .dash-inner { gap: 16px; }
  .dash-copy { text-align: center; }
  .dash-copy h2 { font-size: 24px; margin-bottom: 0.3em; }
  .dash-copy p { font-size: 13px; margin-bottom: 8px; }
  .gauge-wrap { max-width: 240px; margin: 0 auto; }
  .gauge-stops { height: 110px; margin-top: 0; }
  .gauge-stop { padding: 10px 14px; }
  .gauge-stop-num { font-size: 26px; margin-bottom: 2px; }
  .gauge-stop p { font-size: 12.5px; }

  .services-grid { grid-template-columns: 1fr; }
  .services-cta { flex-direction: column; align-items: flex-start; }
  .services-cta .btn { width: 100%; }

  .float-whatsapp { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .phone-field { flex-direction: column; }
  .phone-field select { flex: 1; }
  
  /* Ajustes finos do Quiz no mobile */
  .modal { padding: 24px 16px; }
  .quiz-title { font-size: 18px; }
  .quiz-instruction { font-size: 13px; margin-bottom: 16px; }
  .option-card { padding: 12px 16px; gap: 8px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  #needle, #gaugeFill, .gauge-stop { transition: none; }
}

/* ============ SKILL UPDATES: QUIZ, WATER LOADER, GLOWS ============ */

/* 1. QUIZ CONTAINER & STEPS */
.quiz-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quiz-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.quiz-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-alt);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 999px;
  transition: width 0.4s var(--ease);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
}

.quiz-step-info {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dimmer);
  align-self: flex-end;
}

.quiz-title {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--white);
  margin-bottom: 4px;
}

.quiz-instruction {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: stepFadeIn 0.4s var(--ease) forwards;
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2. OPTION CARDS GRID */
.option-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.option-cards-grid.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.option-cards-grid.grid-vertical {
  grid-template-columns: 1fr;
}

.option-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  user-select: none;
}

.option-card span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.option-card .card-icon {
  font-size: 18px;
  color: var(--text-dimmer);
  transition: color 0.3s var(--ease);
}

/* Card states */
.option-card:hover {
  background: rgba(255, 106, 0, 0.04);
  border-color: rgba(255, 106, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.option-card:hover .card-icon {
  color: var(--orange-light);
}

.option-card.active {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.15), rgba(255, 106, 0, 0.03));
  border-color: var(--orange);
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.15);
}

.option-card.active .card-icon {
  color: var(--orange);
}

.option-card.active span {
  color: var(--orange);
  font-weight: 600;
}

/* Vertical items (symptoms) */
.option-cards-grid.grid-vertical .option-card {
  padding: 14px 18px;
  justify-content: flex-start;
}

/* 3. CARD PULSATION GUIDELINES */
@keyframes cardGlow {
  0% {
    border-color: var(--card-border);
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  }
  50% {
    border-color: rgba(255, 106, 0, 0.5);
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.25);
  }
  100% {
    border-color: var(--card-border);
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  }
}

.option-card.pulse-card {
  animation: cardGlow 2.2s infinite ease-in-out;
}

/* 4. INPUT GROUPS */
.quiz-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz-input-group label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.quiz-input-group input {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.quiz-input-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.15);
}

.quiz-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--card-border);
  padding-top: 20px;
}

.quiz-footer .btn {
  flex: 1;
}

/* 5. SUCCESS SCREEN & WATER LOADER (FLUID LOADER) */
.quiz-success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  animation: stepFadeIn 0.4s var(--ease) forwards;
}

.success-title {
  font-size: 24px;
  color: var(--white);
  margin: 16px 0 8px 0;
}

.success-desc {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 320px;
  line-height: 1.5;
}

.water-loader-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
}

.water-loader {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: border-color 0.5s var(--ease);
}

/* Default wave - Fluid Simulation */
.water-wave {
  position: absolute;
  width: 220%;
  height: 220%;
  background-color: var(--orange); /* Laranja - Cor oficial / fluido mecânico */
  border-radius: 38%;
  left: -60%;
  bottom: -160%;
  animation: fillWater 2.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards, rotateWave 5s linear infinite;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.4);
  transition: background-color 0.5s var(--ease);
}

.success-check-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 3rem;
  color: #ffffff;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fillWater {
  0% { bottom: -160%; }
  100% { bottom: -15%; }
}

@keyframes rotateWave {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success Loaded State */
.water-loader.loaded {
  border-color: rgba(46, 196, 182, 0.3);
}

.water-loader.loaded .water-wave {
  background-color: #2ec4b6; /* Verde Esmeralda Sucesso */
  box-shadow: 0 0 15px rgba(46, 196, 182, 0.4);
}

.water-loader.loaded .success-check-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* 6. DESIGN ENHANCEMENTS & NEON GLOWS */
/* Ambient glows in hero section */
.hero-bg {
  background:
    radial-gradient(circle at 75% 25%, rgba(255,106,0,.15), transparent 45%),
    radial-gradient(circle at 20% 75%, rgba(255,106,0,.06), transparent 50%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.015) 0 2px, transparent 2px 90px),
    var(--bg);
}

/* Glowing text highlight in Hero */
.hero h1 span {
  background: linear-gradient(135deg, var(--orange) 30%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 106, 0, 0.25));
}

/* Header dynamic shadow & blur */
.site-header {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Ambient light in Dashboard Section */
.dash-sticky {
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.01) 0 2px, transparent 2px 100px),
    radial-gradient(circle at 50% 50%, rgba(255,106,0,.06), transparent 60%),
    var(--bg-alt);
}

/* Speedometer Glowing effects */
.gauge {
  filter: drop-shadow(0 0 15px rgba(255, 106, 0, 0.15));
}

#gaugeFill {
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(255, 106, 0, 0.7));
}

#needle line {
  filter: drop-shadow(0 0 4px rgba(255, 106, 0, 0.8));
}

/* Glassmorphism dashboard cards */
.gauge-stops {
  height: 160px;
}

.gauge-stop {
  background: rgba(30, 30, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.gauge-stop.active {
  transform: translateY(0) scale(1);
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.12), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gauge-stop-num {
  background: linear-gradient(135deg, var(--orange) 30%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glowing service cards */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, transparent 60%, rgba(255, 106, 0, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.3s var(--ease);
}

.service-card:hover::before {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.2) 0%, rgba(255, 106, 0, 0.6) 100%);
}

.service-icon {
  background: rgba(255, 106, 0, 0.04);
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.05);
  transition: all 0.3s var(--ease);
}

.service-card:hover .service-icon {
  transform: scale(1.05);
  background: rgba(255, 106, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.2);
}

/* 7. RESPONSIVITY REFINEMENTS FOR THE QUIZ */
@media (max-width: 580px) {
  .option-cards-grid {
    grid-template-columns: 1fr;
  }
  .option-cards-grid.grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quiz-footer {
    flex-direction: column-reverse;
    gap: 10px;
  }
  
  .quiz-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 8. PROFILE CARD (SOBRE/AUTORIDADE) */
.profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 24px;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.profile-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.3);
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.08), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-img-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.3);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--bg-alt);
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.profile-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.profile-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dimmer);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* 9. HERO 2-COLUMN PROFILE CARD & MEDIA SHOWCASE */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 760px;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  width: 100%;
}

.hero-profile-card {
  position: relative;
  background: rgba(30, 30, 30, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 24px;
  width: 320px;
  max-width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 106, 0, 0.05);
  transition: all 0.4s var(--ease);
  animation: heroCardFloatMobile 6s ease-in-out infinite alternate;
}

@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  
  .hero-profile-card {
    transform: rotateY(-5deg) rotateX(5deg);
    animation: heroCardFloat 6s ease-in-out infinite alternate;
  }
}

@keyframes heroCardFloat {
  0% {
    transform: rotateY(-5deg) rotateX(5deg) translateY(0);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 106, 0, 0.05);
  }
  100% {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 106, 0, 0.15);
  }
}

@keyframes heroCardFloatMobile {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.hero-profile-card:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-15px) scale(1.02);
  border-color: rgba(255, 106, 0, 0.4);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 106, 0, 0.25);
}

.hero-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  color: #140a00;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  z-index: 10;
}

.hero-badge i {
  font-size: 11px;
}

.hero-profile-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.hero-profile-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgba(20, 20, 20, 0.8) 100%);
  pointer-events: none;
}

.hero-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.hero-profile-card:hover .hero-profile-img {
  transform: scale(1.05);
}

.hero-profile-info {
  text-align: center;
}

.hero-profile-info h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-profile-info p {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-profile-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
  text-align: left;
}

.hero-profile-specs span {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-profile-specs i {
  color: var(--orange);
  font-size: 13px;
}
