/* ===== VARIÁVEIS ===== */
:root {
  --gold: #C9A84C;
  --gold-dark: #A8893A;
  --black: #0d0d0d;
  --dark: #111111;
  --dark-soft: #1a1a1a;
  --dark-card: #181818;
  --dark-border: rgba(255,255,255,.07);
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --gray-text: #666666;
  --red: #E53935;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --max-width: 1200px;
  --radius: 6px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font); background: var(--dark); color: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; }

/* ===== UTILITÁRIOS ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-dark { background: var(--dark); color: var(--white); }
.section-light { background: var(--white); color: var(--dark); }
.text-gold { color: var(--gold); }
.text-upper { text-transform: uppercase; }
.text-center { text-align: center; }

/* ===== SECTION FULL (100vh) ===== */
.section-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BOTÃO CTA ===== */
.btn-cta {
  display: inline-block;
  background: #FFD700;
  color: var(--black);
  font-weight: 800;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.btn-cta:hover { background: #FFD710; transform: translateY(-1px); }
.btn-cta:active { transform: translateY(0); }

/* ===== URGENCY BANNER ===== */
.urgency-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 12px 48px 12px 16px;
  font-size: .9rem;
  font-weight: 700;
}
.urgency-banner button {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== HERO ===== */
.hero .container { max-width: 100%; padding-left: 0; padding-right: 150px; }
.hero {
  padding: 0;
  overflow: hidden;
  background-image: url('assets/staff/img2.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  /* 56.25vw = altura exata do img2 (16:9) sem corte; limitado a 100vh */
  min-height: min(56.25vw, 100vh);
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: min(56.25vw, 100vh);
  padding-top: 40px;
}
.hero__content { width: 62vw; max-width: 62vw; }
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 40px;
}
.hero__logo-wrap { margin-bottom: .25rem; }
.hero__logo-img {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: contain;
}
.hero__badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 16px;
  border-radius: 20px;
}
.hero__headline {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white);
  max-width: 640px;
}
.hero__headline-line {
  display: block;
  white-space: nowrap;
}
.hero__sub {
  font-size: 0.95rem;
  color: #aaa;
  max-width: 500px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55em 1.1em;
  color: #000;
  background: #FFD700;
  border: none;
  border-radius: 16px;
  letter-spacing: .02em;
  cursor: pointer;
  overflow: hidden;
}
.hero__cta svg {
  margin-left: 8px;
  flex-shrink: 0;
  transform: rotate(90deg);
  transition: transform .5s cubic-bezier(.76,0,.24,1);
}
.hero__cta span {
  transition: transform .5s cubic-bezier(.76,0,.24,1);
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,.6); }
  50%       { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
}
.hero__cta { animation: btn-pulse 2s ease-in-out infinite; }
.hero__cta:hover { background: #FFD710; animation: none; }
.hero__cta:hover svg { transform: translateX(5px) rotate(0deg); }
.hero__cta:hover span { transform: translateX(7px); }

/* Hero text dark — fundo amarelo da img2 */
.hero__badge { border-color: rgba(0,0,0,.4); color: #111; }
.hero__headline { color: #0d0d0d; }
.hero__headline strong { font-weight: 900; }
.hero__headline .text-gold { color: #1a0d00; }
.hero__sub { color: #333; }

.hero__photo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: stretch;
}
.hero__eric {
  height: min(85vh, 680px);
  width: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
  filter: drop-shadow(0 0 40px rgba(201,168,76,.15));
}

/* ===== MARQUEE DUPLO CRUZADO ===== */
.hero, section, div.logos-section { position: relative; z-index: 1; }
.marquee-wrap {
  position: relative;
  height: 160px;
  overflow: visible;
  margin: -110px 0 -70px;
  z-index: 20;
}
.marquee-row {
  position: absolute;
  left: -10vw;
  right: -10vw;
  overflow: hidden;
  padding: 13px 0;
}
.marquee-row--dark {
  background: #111;
  top: 48px;
  padding: 24px 0;
  transform: rotate(-2deg);
  transform-origin: center;
  border-top: 1px solid rgba(201,168,76,.25);
  border-bottom: 1px solid rgba(201,168,76,.15);
  z-index: 2;
}
.marquee-row--light {
  background: #fff;
  top: 96px;
  transform: rotate(2deg);
  transform-origin: center;
  z-index: 3;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track--reverse {
  animation: marquee-scroll-reverse 32s linear infinite;
}
.marquee-track span {
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  white-space: nowrap;
}
.marquee-row--light .marquee-track span {
  color: #111;
}
.marquee-sep { color: rgba(201,168,76,.4) !important; }
.marquee-sep--dark { color: rgba(0,0,0,.3) !important; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-scroll-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ===== FORM SECTION ===== */
.form-section { padding: 80px 0; }
.form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: stretch;
}
.form-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.form-hero__title {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: .25rem;
}
.form-step { display: flex; gap: 1rem; align-items: flex-start; }
.form-step__num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  font-size: .82rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.form-step strong { display: block; font-size: .85rem; color: var(--white); margin-bottom: .25rem; }
.form-step p { font-size: .8rem; color: #aaa; line-height: 1.55; }
.form-step--card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 1rem;
}

/* Form box dark variant */
.form-box--dark {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-box--dark .lead-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.form-box__title {
  font-size: .88rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .05em;
}

/* Form field with label */
.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}
.phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  overflow: visible;
  position: relative;
}
.phone-wrap input[type="tel"] {
  flex: 1;
  min-width: 0;
  padding: 10px 14px !important;
  border: none !important;
  background: rgba(255,255,255,.07) !important;
  border-radius: 0 8px 8px 0 !important;
  box-shadow: none !important;
}
.phone-wrap input[type="tel"]:focus { outline: none; border-color: transparent !important; }
/* Country selector */
.country-select { position: relative; flex-shrink: 0; }
.country-select__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 8px 10px 10px;
  height: 100%;
  background: rgba(255,255,255,.04);
  border: none;
  border-right: 1px solid rgba(255,255,255,.1);
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  color: #bbb;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s;
}
.country-select__btn:hover { background: rgba(255,255,255,.08); }
.country-select__flag { display: flex; align-items: center; }
.country-select__arrow { opacity: .55; flex-shrink: 0; transition: transform .2s; }
.country-select__btn[aria-expanded="true"] .country-select__arrow { transform: rotate(180deg); }
.flag-emoji { font-size: 1.1rem; line-height: 1; }
.country-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 270px;
  background: #1c1c1c;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,.6);
  z-index: 200;
  overflow: hidden;
}
.country-dropdown__list {
  list-style: none;
  max-height: 210px;
  overflow-y: auto;
  margin: 0;
  padding: 4px 0;
}
.country-dropdown__list::-webkit-scrollbar { width: 4px; }
.country-dropdown__list::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 2px; }
.country-dropdown__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  cursor: pointer;
  font-size: .82rem;
  color: #ccc;
  transition: background .12s;
}
.country-dropdown__item:hover { background: rgba(201,168,76,.12); color: #fff; }
.cdi__flag { flex-shrink: 0; width: 22px; display: flex; align-items: center; justify-content: center; }
.cdi__name { flex: 1; }
.cdi__dial { color: #777; font-size: .78rem; }
.lead-form__field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.lead-form__field label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #bbb;
}
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  font-size: .88rem;
  background: rgba(255,255,255,.07);
  color: var(--white);
  transition: border-color .2s;
}
.lead-form input::placeholder { color: #666; }
.lead-form select { color: #bbb; }
.lead-form select option { background: var(--dark-card); color: var(--white); }
.lead-form input:focus,
.lead-form select:focus { outline: none; border-color: var(--gold); }
.lead-form__submit {
  width: 100%;
  text-align: center;
  padding: 13px;
  font-size: .9rem;
  margin-bottom: .6rem;
  border-radius: 16px;
  background: #4fff2e;
  color: #000;
}
.lead-form__submit { animation: btn-pulse 2s ease-in-out infinite; }
.lead-form__submit:hover { background: #18F30A; animation: none; }
.lead-form__privacy { font-size: .78rem; color: #666; text-align: center; }
@keyframes successFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 320px;
  padding: 2.5rem 1.5rem;
  animation: successFadeUp .5s ease both;
}
.form-success__icon {
  width: 76px;
  height: 76px;
  margin-bottom: 1.5rem;
}
.form-success__icon svg { width: 100%; height: 100%; }
.fs-circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: drawCircle .7s cubic-bezier(.4,0,.2,1) forwards .1s;
}
.fs-check {
  stroke-dasharray: 42;
  stroke-dashoffset: 42;
  animation: drawCheck .4s cubic-bezier(.4,0,.2,1) forwards .8s;
}
.form-success__title {
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 .6rem;
  letter-spacing: -.01em;
}
.form-success__line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto .9rem;
}
.form-success__msg {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin: 0 0 1.75rem;
}
.lead-form__erro {
  margin-top: .75rem;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--red);
}
.form-success__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #18F30A;
  color: #000;
  font-weight: 700;
  font-size: .88rem;
  padding: .75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.form-success__cta:hover { opacity: .85; transform: translateY(-1px); }

/* ===== DEP CAROUSEL ===== */
.dep-carousel { display:flex; align-items:center; gap:10px; }
.dep-carousel .testimonials-grid { flex:1; margin:2rem 0; }
.dep-nav-btn {
  flex-shrink:0; width:40px; height:40px; border-radius:50%;
  border:1px solid rgba(0,0,0,.08); background:#fff;
  color:rgba(23,23,23,1); fill:rgba(23,23,23,1);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .15s;
  box-shadow:0 0 0 1px rgba(0,0,0,.08), 0 2px 2px rgba(0,0,0,.04);
}
.dep-nav-btn:hover { background:rgba(0,0,0,.08); }

/* ===== DEPOIMENTOS (section-light) ===== */
.testimonials-section { padding: 80px 0; text-align: center; }
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .section-title { color: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 2rem;
}
.testimonial-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.testimonials-grid--video { margin-top: 0; }
.testimonial-card--video {
  background: #1a1a1a;
  border-color: #333;
  aspect-ratio: 9 / 16;
}
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: .75rem;
}
.video-play {
  width: 52px; height: 52px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  padding-left: 4px;
}
.video-label { font-size: .8rem; color: #666; letter-spacing: .05em; }
.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin: .75rem 0 1.5rem;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.dot--active { background: var(--gold); transform: scale(1.25); }
.video-wrap { max-width: 640px; margin: 0 auto 2rem; }
.testimonial-video { width: 100%; border-radius: 10px; }

/* ===== LOGOS CLIENTES ===== */
.logos-section { padding: 56px 0; background: #0A0A0A !important; }
.logos-carousel-wrap { overflow: hidden; margin-top: 1.5rem; }
.logos-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.logos-track img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  background: #0A0A0A;
}

/* ===== SISTEMA EAR — fluxo visual ===== */
.method-section { text-align: center; }
.method-section .section-desc { color: #aaa; margin-bottom: 3rem; }
.method-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.flow-step {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  border: 2px solid rgba(201,168,76,.25);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color .4s, background .4s, box-shadow .4s;
  cursor: default;
}
.flow-step.flow-active {
  border-color: var(--gold);
  background: rgba(201,168,76,.08);
  box-shadow: 0 0 24px rgba(201,168,76,.18);
}
.flow-step__num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.flow-step__label {
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .06em;
  margin-bottom: .5rem;
}
.flow-step__desc {
  font-size: .78rem;
  color: #888;
  line-height: 1.5;
}
.flow-arrow {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--gold);
  padding-top: 2.5rem;
  opacity: .5;
}

/* ===== SERVIÇOS — cards carousel ===== */
.services-section { padding: 80px 0; }
.services-section .section-title { margin-bottom: 2.5rem; }
.services-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 15%;
  max-width: 1200px;
  margin: 0 auto;
}
.services-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.services-slide {
  flex-shrink: 0;
  width: 100%;
}
.services-slide img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  background: var(--dark);
}
.services-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(201,168,76,.5);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  line-height: 1;
}
.services-arrow:hover { background: rgba(201,168,76,.2); border-color: var(--gold); }
.services-arrow--prev { left: 14px; }
.services-arrow--next { right: 14px; }
.services-dots { margin: 1.5rem 0 0; }

/* ===== SEÇÕES GENÉRICAS ===== */
.section-label {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .5rem;
  display: block;
}
.section-title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc { font-size: .95rem; color: #888; max-width: 680px; margin: 0 auto 2rem; }
.section-sub { font-size: .95rem; color: var(--gray-text); margin-bottom: 1.5rem; }

/* ===== PLANOS ===== */
.plans-section { padding: 0; }
.plans-section .section-desc { color: #aaa; }

/* ===== SOBRE ===== */
.about-section { padding: 0; }
.about-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-section__text .section-title { text-align: left; }
.about-section__text .section-desc { color: #bbb; text-align: left; margin: 0 0 1.5rem; }
.about-stats { list-style: none; display: flex; gap: 2rem; }
.about-stats li { font-size: .9rem; color: #aaa; }
.about-stats strong { display: block; font-size: 1.6rem; }
.about-section__img img { border-radius: 12px; width: 100%; }

/* ===== TIME EXCLUSIVO ===== */
.exclusive-section { padding: 0; }
.exclusive-section .section-desc { color: #aaa; margin-bottom: 2rem; }
.exclusive-section .btn-cta { padding: 10px 26px; font-size: .85rem; }
.live-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  color: #aaa;
  margin-top: 1.75rem;
}
.live-dot {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 10px; height: 10px;
  background: #4caf50;
  border-radius: 50%;
}
.live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4caf50;
  animation: live-ping 1.6s ease-out infinite;
}
@keyframes live-ping {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(2.8); opacity: 0;  }
}

/* ===== FAQ (dark) ===== */
.faq-section { padding: 72px 0; text-align: center; }
.faq-list { max-width: 760px; margin: 1.5rem auto 0; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .875rem;
  transition: background .2s;
}
.faq-question:hover { background: rgba(255,255,255,.03); }
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--gold-dark);
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.faq-text { flex: 1; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--white);
  font-size: 1rem;
  transition: transform .3s;
  opacity: .7;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); opacity: 1; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer.open { max-height: 220px; padding: 0 1.25rem 1rem 4.25rem; }
.faq-answer p { font-size: .88rem; color: #aaa; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { padding: 48px 0; border-top: 1px solid var(--dark-border); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: .75rem; text-align: center; }
.footer__logo img { height: 32px; width: auto; opacity: .85; }
.footer__tagline { font-size: .88rem; color: #aaa; }
.footer__social a { font-size: .88rem; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.footer__social a:hover { text-decoration: underline; }
.footer__legal { font-size: .78rem; color: #555; }

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .services-carousel-wrap { padding: 0 8%; }
  .services-slide img { height: 320px; }
}

@media (max-width: 768px) {
  .section-full { padding: 60px 0; min-height: auto; }
  .form-section { min-height: 100svh; }

  .hero { justify-content: flex-start; min-height: 62svh; }
  .hero .container { padding: 0 24px; }
  .hero__logo-wrap { align-self: center; }
  .hero__inner { align-items: center; justify-content: flex-end; padding-bottom: 8px; min-height: 62svh; }
  .hero__content { width: 100%; max-width: 100%; align-items: center; text-align: center; padding-bottom: 0; gap: 1rem; }
  .marquee-wrap { margin: -130px 0 -50px; }
  .hero__headline {
    max-width: 100%;
    font-size: clamp(1.15rem, 4.4vw, 1.45rem);
  }
  .hero__sub { max-width: 100%; font-size: 0.95rem; text-wrap: balance; }
  .hero {
    background-image: none;
    background-color: var(--dark);
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: url('assets/staff/img2.webp');
    /* Erik fica na metade direita da img — % alinha o rosto ao centro da tela */
    background-position: 96% center;
    background-size: cover;
    filter: blur(0.5px);
    z-index: 0;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
  }
  .hero__inner { position: relative; z-index: 2; }
  .hero__badge { border-color: var(--gold); color: var(--gold); }
  .hero__headline { color: var(--white); }
  .hero__headline .text-gold { color: #FFD700; }
  .hero__sub { color: #ccc; }

  .form-section { padding-top: 80px; }
  .form-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .lead-form__grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .method-flow { gap: .75rem; }
  .flow-arrow { display: none; }
  .flow-step { min-width: calc(50% - .5rem); max-width: none; }

  .about-section__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-section__text .section-title { text-align: center; }
  .about-section__text .section-desc { text-align: center; }
  .about-stats { justify-content: center; }

  .services-carousel-wrap { padding: 0 44px; }
  .services-slide img { height: 220px; }

  .testimonials-carousel { gap: .5rem; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .flow-step { min-width: calc(100% - .5rem); }
  .about-stats { flex-direction: column; align-items: center; gap: 1rem; }
  .hero__cta { width: 100%; text-align: center; justify-content: center; }
  .lead-form__submit { font-size: .9rem; }
  .form-box--dark { padding: 1.5rem 1rem; }
}
