/* ======================================================
   EDUARDO LOIS — BLACK GOLD PREMIUM
   CSS revisado e compatível com o HTML enviado
====================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: #0b0b0c;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

:root {
  --gold: #c8a96a;
  --gold-light: #e7d2a3;
  --gold-dark: #8f6b37;
  --bg: #0b0b0c;
  --bg-soft: #101010;
  --card: #171717;
  --card-hover: #202020;
  --white: #fff;
  --text: #d7d2ca;
  --text-soft: #b8b2a8;
  --border: rgba(200, 169, 106, 0.18);
  --border-strong: rgba(200, 169, 106, 0.48);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 20px 50px rgba(200, 169, 106, 0.24);
  --radius: 24px;
  --nav-height: 80px;
  --container: 1200px;
}

/*======================================================
NAVBAR
======================================================*/

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;

  width: 100%;
  height: 80px;

  padding: 0 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(11, 11, 12, 0.78);
  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(200, 169, 106, 0.18);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.brand strong {
  color: #fff;

  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
}

.brand span {
  color: var(--gold);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 3px;
  text-transform: uppercase;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar nav a {
  position: relative;

  color: #fff;

  font-size: 14px;
  font-weight: 600;

  transition: color 0.3s ease;
}

.navbar nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--gold);

  transition: width 0.3s ease;
}

.navbar nav a:hover {
  color: var(--gold);
}

.navbar nav a:hover::after {
  width: 100%;
}

/*======================================================
HERO
======================================================*/

.hero {
  position: relative;

  min-height: 100vh;

  padding-top: 80px;

  overflow: hidden;

  background: #0b0b0c;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 75% 45%,
      rgba(200, 169, 106, 0.15),
      transparent 32%
    ),
    linear-gradient(90deg, rgba(11, 11, 12, 0.97), rgba(11, 11, 12, 0.72)),
    url("img/bg-hero.jpg");

  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: min(1240px, 92%);
  min-height: calc(100vh - 80px);

  margin: 0 auto;

  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 10px;
}

.hero-text {
  position: relative;
  z-index: 5;
  min-width: 0;
}

.hero-text h1 {
  width: max-content;
  max-width: none;

  margin-bottom: 28px;

  color: #fff;

  font-size: clamp(50px, 4.35vw, 68px);
  font-weight: 900;

  line-height: 1.03;
  letter-spacing: -2px;
}

.hero-text h1 span {
  display: block;
  white-space: nowrap;
}

.hero-text p {
  width: 100%;
  max-width: 580px;

  margin-bottom: 40px;

  color: var(--text);

  font-size: 18px;
  line-height: 1.75;
}

/*======================================================
IMAGEM HERO
======================================================*/

.hero-image {
  position: relative;

  height: calc(100vh - 80px);

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image::before {
  content: "";

  position: absolute;

  width: 620px;
  height: 620px;

  border-radius: 50%;

  background: radial-gradient(rgba(200, 169, 106, 0.22), transparent 70%);

  filter: blur(28px);
}

.hero-image img {
  position: relative;
  z-index: 3;

  width: auto;
  max-height: 92vh;

  object-fit: contain;

  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.65));
}

/*======================================================
FAIXA DOURADA
======================================================*/

.gold-shape {
  position: absolute;

  top: 0;
  right: 85px;

  z-index: 1;

  width: 220px;
  height: 100%;

  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));

  transform: skewX(-8deg);

  opacity: 0.86;
}

/*======================================================
CARDS FLUTUANTES
======================================================*/

.floating-card {
  position: absolute;
  z-index: 5;

  padding: 18px 24px;

  border: 1px solid var(--border);
  border-radius: 18px;

  background: rgba(20, 20, 20, 0.86);
  backdrop-filter: blur(15px);

  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.45);
}

.floating-card strong {
  display: block;

  margin-bottom: 4px;

  color: var(--gold-light);

  font-size: 28px;
}

.floating-card span {
  color: var(--text-soft);

  font-size: 13px;
}

.card-one {
  top: 27%;
  right: -10px;
}

.card-two {
  left: 0;
  bottom: 16%;
}

/*======================================================
RESPONSIVO HERO
======================================================*/

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding-top: 60px;
  }

  .hero-text h1 {
    width: auto;
    max-width: 850px;

    margin: 0 auto 28px;

    font-size: clamp(42px, 7vw, 60px);
  }

  .hero-text h1 span {
    white-space: normal;
  }

  .hero-text p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-image {
    height: auto;
    min-height: 560px;
  }

  .hero-image img {
    max-height: 650px;
  }

  .gold-shape {
    right: 50%;

    width: 180px;

    transform: translateX(50%) skewX(-8deg);
  }

  .floating-card {
    display: block;
  }

  .card-one {
    top: 18%;
    right: 8px;
  }

  .card-two {
    left: 8px;
    bottom: 10%;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;

    padding: 0 18px;
  }

  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand span {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .navbar nav {
    display: none;
  }

  .hero {
    min-height: auto;

    padding-top: 70px;
  }

  .hero-content {
    width: min(100% - 32px, 1240px);

    min-height: auto;
  }

  .hero-text {
    text-align: left;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .hero-text h1 span {
    display: block;
  }

  .hero-text p {
    text-align: justify;
    text-align-last: left;
    word-spacing: -0.5px;
    letter-spacing: 0.15px;
    line-height: 1.8;
  }

  .hero-text .btn {
    display: flex;

    width: 100%;
    max-width: 340px;

    margin: 40px auto 0;

    justify-content: center;
    align-items: center;
  }

  .hero-image {
    position: relative;
  }

  .floating-card {
    display: block;

    padding: 11px 14px;

    border-radius: 13px;

    background: rgba(20, 20, 20, 0.88);
    backdrop-filter: blur(12px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  }

  .floating-card strong {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .floating-card span {
    font-size: 10px;
  }

  .card-one {
    top: 17%;
    right: 2px;
  }

  .card-two {
    left: 2px;
    bottom: 8%;
  }

  .hero-image img {
    max-height: 500px;
  }

  .btn {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 16px;
  }

  .brand span {
    font-size: 8px;
    letter-spacing: 1.7px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero-image img {
    max-height: 430px;
  }

  .floating-card {
    padding: 9px 11px;
  }

  .floating-card strong {
    font-size: 16px;
  }

  .floating-card span {
    font-size: 9px;
  }

  .card-one {
    top: 19%;
    right: 0;
  }

  .card-two {
    left: 0;
    bottom: 7%;
  }
}

.sobre-mim {
  color: #8f6b37;
  font-weight: 900;
}

body::selection {
  background: var(--gold);
  color: #111;
}
section {
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  animation: pulseButton 2.6s infinite;
}
.btn:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-gold);
}
.btn i {
  font-style: normal;
  animation: arrowMove 1.2s infinite;
}
@keyframes pulseButton {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(200, 169, 106, 0);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 32px rgba(200, 169, 106, 0.3);
  }
}
@keyframes arrowMove {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(7px);
  }
}

.consultoria {
  padding: 110px 0;
  background:
    radial-gradient(circle at top, rgba(200, 169, 106, 0.1), transparent 38%),
    var(--bg);
}
.consultoria h2,
.processo h2,
.faq h2 {
  text-align: center;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 900;
}
.consultoria h2 {
  margin-bottom: 62px;
}

.consultoria-grid {
  width: min(var(--container), 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.consultoria-coluna {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.accordion {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.accordion:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(200, 169, 106, 0.08);
  border-color: var(--border-strong);
}
.accordion button {
  width: 100%;
  min-height: 78px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-size: 15px;
  font-weight: 800;
}
.accordion button span {
  display: flex;
  align-items: center;
  gap: 15px;
}
.accordion button span::before {
  content: "✓";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  font-size: 14px;
  font-weight: 900;
}
.accordion button small {
  width: 34px;
  height: 34px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;

  color: var(--gold);

  border: 1px solid rgba(200, 169, 106, 0.28);

  background: rgba(200, 169, 106, 0.05);

  transition: 0.35s;
}

.accordion:hover button small {
  background: var(--gold);

  color: #111;
}

.accordion.active button small {
  transform: rotate(180deg);

  background: var(--gold);

  color: #111;
}
.accordion-content {
  display: none;
  padding: 0 30px 30px 73px;
}
.accordion-content p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
}
.accordion.active {
  border-color: rgba(200, 169, 106, 0.55);
  background: linear-gradient(
    145deg,
    rgba(200, 169, 106, 0.12),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}
.accordion.active .accordion-content {
  display: block;
}
.accordion.active small {
  transform: rotate(180deg);
}

.processo {
  padding: 110px 0;
  background:
    radial-gradient(
      circle at center,
      rgba(200, 169, 106, 0.08),
      transparent 45%
    ),
    var(--bg);
}
.processo h2 {
  margin-bottom: 64px;
}
.processo-grid {
  width: min(var(--container), 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.processo-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.processo-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.processo-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
}
.processo-card h3 {
  margin-bottom: 16px;
  font-size: 27px;
  line-height: 1.2;
}
.processo-card p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}
.processo-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(rgba(200, 169, 106, 0.08), transparent 70%);
}

.sobre {
  width: min(var(--container), 92%);
  margin: 0 auto;
  padding: 110px 0;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 70px;
  align-items: center;
}
.sobre-img {
  position: relative;
}
.sobre-img::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid var(--border);
  border-radius: 28px;
}
.sobre-img img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.sobre-text::before {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.sobre-text h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}
.sobre-text p {
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
}

/*======================================================
RESULTADOS — CORREÇÃO DE ALTURA E ESPAÇAMENTO
======================================================*/

.resultados-carousel {
  padding: 80px 0 50px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(200, 169, 106, 0.06),
      transparent 55%
    ),
    var(--bg);
}

/* TÍTULO E SETAS */

.resultados-top {
  width: min(var(--container), 92%);
  margin: 0 auto 32px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.resultados-top h2 {
  margin: 0;

  text-align: center;

  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

/* SETAS */

.carousel-btn {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(200, 169, 106, 0.35);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.03);

  color: #fff;
  font-size: 28px;
  line-height: 1;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.carousel-btn:hover {
  transform: scale(1.08);

  background: var(--gold);
  color: #111;
}

/* SWIPER */

.resultadosSwiper {
  width: 100%;
  height: auto;
  padding: 10px 0 20px;
  overflow: hidden;
}

.resultadosSwiper .swiper-wrapper {
  height: auto;
  align-items: center;
}

.resultadosSwiper .swiper-slide {
  height: auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD */

.resultadosSwiper {
  width: 100%;
  height: auto;
  padding: 10px 0 20px;
  overflow: hidden;
}

.resultadosSwiper .swiper-wrapper {
  height: auto;
  align-items: center;
}

.resultadosSwiper .swiper-slide {
  height: auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.resultado-card {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;

  margin-top: 10px;

  overflow: hidden;

  background: transparent;
  border: none;
  border-radius: 24px;

  opacity: 0.34;
  filter: blur(1px);

  transform: scale(0.82);
  transform-origin: center;

  transition:
    transform 0.55s ease,
    opacity 0.55s ease,
    filter 0.55s ease;
}

.resultado-card img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

/* CARDS LATERAIS */

.swiper-slide-prev .resultado-card,
.swiper-slide-next .resultado-card {
  opacity: 0.65;

  filter: none;

  transform: scale(0.9);
}

/* CARD CENTRAL */

.swiper-slide-active .resultado-card {
  opacity: 1;

  filter: none;

  transform: scale(1);

  border-color: rgba(255, 255, 255, 0.12);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVO */

@media (max-width: 768px) {
  .resultados-carousel {
    padding: 70px 0 40px;
  }

  .resultados-top {
    margin-bottom: 25px;
    flex-wrap: wrap;
  }

  .resultados-top h2 {
    width: 100%;
    order: -1;
  }

  .resultadosSwiper,
  .resultadosSwiper .swiper-wrapper {
    height: 360px;
  }

  .resultadosSwiper .swiper-slide {
    height: 350px;
  }

  .resultado-card {
    height: 330px;
  }
}

@media (max-width: 500px) {
  .resultadosSwiper,
  .resultadosSwiper .swiper-wrapper {
    height: 320px;
  }

  .resultadosSwiper .swiper-slide {
    height: 310px;
  }

  .resultado-card {
    height: 290px;
  }
}

.destaque {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(200, 169, 106, 0.18), #181818);
}
.destaque::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 26px;
  box-shadow: inset 0 0 60px rgba(200, 169, 106, 0.1);
}
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.planos {
  padding: 100px 20px 120px;

  background:
    radial-gradient(circle at top, rgba(200, 169, 106, 0.08), transparent 40%),
    var(--background);
}

.planos h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 60px;
}

.planos-grid {
  width: min(980px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plano {
  position: relative;

  min-height: 390px;
  padding: 42px 30px 34px;

  display: flex;
  flex-direction: column;
  align-items: center;

  border: 1px solid var(--border);
  border-radius: 26px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015)
  );

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.plano:hover {
  transform: translateY(-8px);
  border-color: var(--gold);

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(200, 169, 106, 0.08);
}

.plano h3 {
  margin-bottom: 48px;

  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}

/* ÁREA DO DESCONTO */

.plano-desconto {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.plano-desconto strong {
  display: block;

  color: var(--gold-light);

  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.plano-desconto span {
  margin-top: 10px;

  color: var(--gold);
  font-size: 14px;
  font-weight: 900;

  letter-spacing: 2px;
}

.plano-sem-desconto span {
  color: var(--text-soft);
  font-size: 18px;
  letter-spacing: 0;
}

/* DESTAQUE */

.destaque {
  border: 2px solid var(--gold);

  background: linear-gradient(180deg, rgba(200, 169, 106, 0.18), #181818);
}

/* BOTÃO */

.btn-plano {
  width: 100%;

  padding: 17px;

  border-radius: 14px;

  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));

  color: #111;

  text-align: center;

  font-weight: 900;
  letter-spacing: 0.6px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-plano:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(200, 169, 106, 0.32);
}

/* BATIMENTO DO DESCONTO */

.desconto-pulse {
  animation: discountHeartbeat 2.2s infinite;
}

@keyframes discountHeartbeat {
  0%,
  100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.08);
  }

  24% {
    transform: scale(1);
  }

  36% {
    transform: scale(1.05);
  }

  48% {
    transform: scale(1);
  }
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .planos-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .plano {
    min-height: 340px;
  }
}

/* =========================
   FAQ PREMIUM
========================= */

.faq {
  padding: 100px 0;
  background: linear-gradient(180deg, #0b0b0c, #101010);
}

.faq h2 {
  margin-bottom: 55px;
  text-align: center;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
}

.faq-container {
  width: min(900px, 92%);
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 18px;
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 22px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 169, 106, 0.45);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 25px rgba(200, 169, 106, 0.06);
}

.faq-item button {
  position: relative;

  width: 100%;
  min-height: 76px;
  padding: 0 28px 0 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  text-align: left;

  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

/* Ícone de pergunta à esquerda */
.faq-item button::before {
  content: "?";

  position: absolute;
  left: 26px;

  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));

  color: #111;
  font-size: 16px;
  font-weight: 900;
}

/* Seta à direita */
.faq-item button span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: 50%;

  background: rgba(200, 169, 106, 0.04);

  color: var(--gold);
  font-size: 14px;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.faq-item:hover button span {
  background: var(--gold);
  color: #111;
}

/* Resposta */
.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    max-height 0.45s ease,
    opacity 0.35s ease;
}

.faq-content p {
  padding: 0 28px 28px 76px;

  color: var(--text-soft);
  line-height: 1.8;
}

/* Estado aberto */
.faq-item.active {
  border-color: var(--gold);

  background: linear-gradient(
    145deg,
    rgba(200, 169, 106, 0.12),
    rgba(255, 255, 255, 0.025)
  );

  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-content {
  max-height: 260px;
  opacity: 1;
}

.faq-item.active button span {
  transform: rotate(180deg);
  background: var(--gold);
  color: #111;
}

@media (max-width: 600px) {
  .faq-item button {
    position: relative;

    min-height: 92px;

    padding: 18px 62px 18px 72px;

    font-size: 15px;
    line-height: 1.35;

    text-align: left;
  }

  .faq-item button::before {
    left: 22px;

    width: 36px;
    height: 36px;

    font-size: 16px;
  }

  .faq-item button span {
    position: absolute;

    right: 18px;
    top: 50%;

    transform: translateY(-50%);

    width: 38px;
    height: 38px;
  }

  .faq-item.active button span {
    transform: translateY(-50%) rotate(180deg);
  }

  .faq-content p {
    padding: 0 22px 24px 72px;
  }
}

@media (max-width: 768px) {
  .faq-item button {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 92px;

    padding: 20px 62px 20px 76px;

    font-size: 15px;
    line-height: 1.4;

    text-align: left;
  }

  /* Ícone ? */

  .faq-item button::before {
    left: 22px;

    width: 34px;
    height: 34px;

    font-size: 17px;
  }

  /* Texto */

  .faq-item button strong {
    display: block;

    width: 100%;
  }

  /* Seta */

  .faq-item button span {
    position: absolute;

    right: 18px;
    top: 50%;

    transform: translateY(-50%);

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq-content p {
    padding: 0 22px 24px 76px;
  }
}

.cta {
  width: min(var(--container), 92%);
  margin: 100px auto;
  padding: 90px 50px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 106, 0.35);
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(200, 169, 106, 0.2), transparent 42%),
    linear-gradient(135deg, #181818, #101010);
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  top: -170px;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(rgba(200, 169, 106, 0.35), transparent 70%);
}
.cta > * {
  position: relative;
  z-index: 2;
}
.cta h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
}
.cta p {
  margin-bottom: 35px;
  color: var(--text-soft);
  font-size: 18px;
}

/*======================================================
CONTATO FLUTUANTE
======================================================*/

.contact-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;

  /* o container não bloqueia cliques na página */
  pointer-events: none;
}

/* BOTÃO PRINCIPAL */

.contact-trigger {
  min-height: 54px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 999px;

  background: linear-gradient(135deg, #25d366, #139c48);

  color: #fff;

  font-size: 15px;
  font-weight: 800;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(37, 211, 102, 0.2);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  animation: contactPulse 2.8s infinite;

  /* só o botão recebe clique */
  pointer-events: auto;

  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.contact-trigger i {
  font-size: 21px;
}

.contact-trigger:hover {
  transform: translateY(-4px);

  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(37, 211, 102, 0.35);
}

.contact-trigger.active {
  animation: none;
}

/* MENU */

.contact-menu {
  width: 330px;
  padding: 18px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  border: 1px solid rgba(200, 169, 106, 0.24);
  border-radius: 22px;

  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(18px);

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.48),
    0 0 30px rgba(200, 169, 106, 0.08);

  opacity: 0;
  visibility: hidden;

  transform: translateY(18px) scale(0.96);

  transform-origin: bottom right;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.contact-widget.active .contact-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* CABEÇALHO */

.contact-menu-header {
  padding: 4px 4px 12px;
}

.contact-menu-header strong {
  display: block;
  margin-bottom: 4px;

  color: #fff;
  font-size: 17px;
}

.contact-menu-header span {
  color: var(--text-soft);
  font-size: 13px;
}

/* OPÇÕES */

.contact-option {
  min-height: 72px;
  padding: 12px 14px;

  display: flex;
  align-items: center;
  gap: 14px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.025);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-3px);
}

.whatsapp-option:hover {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.08);
}

.instagram-option:hover {
  border-color: rgba(200, 169, 106, 0.45);
  background: rgba(200, 169, 106, 0.07);
}

/* ÍCONES */

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  font-size: 21px;
}

.whatsapp-option .contact-icon {
  background: rgba(37, 211, 102, 0.14);
  color: #25d366;
}

.instagram-option .contact-icon {
  background: linear-gradient(
    135deg,
    rgba(228, 64, 95, 0.16),
    rgba(131, 58, 180, 0.16)
  );

  color: #e6c07b;
}

/* TEXTO */

.contact-option-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-option-text strong {
  color: #fff;
  font-size: 14px;
}

.contact-option-text small {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.4;
}

/* ANIMAÇÃO */

@keyframes contactPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

/* RESPONSIVO */

@media (max-width: 600px) {
  .contact-widget {
    right: 14px;
    bottom: 14px;
  }

  .contact-menu {
    width: min(330px, calc(100vw - 28px));
  }

  .contact-trigger {
    width: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 50%;
  }

  .contact-trigger span {
    display: none;
  }

  .contact-trigger i {
    font-size: 24px;
  }
}

/*======================================================
FOOTER
======================================================*/

.footer {
  margin-top: 80px;

  border-top: 1px solid rgba(200, 169, 106, 0.15);

  background: #0b0b0c;
}

.footer-content {
  max-width: 1200px;

  margin: auto;

  padding: 28px 20px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.footer p {
  color: #9f9f9f;

  font-size: 14px;
}

.footer strong {
  color: var(--gold);

  font-weight: 700;
}

.dev {
  transition: 0.3s;
}

.dev:hover {
  color: #fff;
}

@media (max-width: 950px) {
  .consultoria-grid,
  .processo-grid,
  .sobre {
    grid-template-columns: 1fr;
  }
  .sobre {
    gap: 50px;
    text-align: center;
  }
  .sobre-img {
    width: min(420px, 100%);
    margin: 0 auto;
  }
  .sobre-text::before {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  .btn {
    width: 100%;
    max-width: 340px;
  }
  .consultoria,
  .processo,
  .sobre,
  .faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .sobre {
    text-align: left;
  }

  .sobre-text {
    text-align: justify;
  }

  .sobre-text p {
    text-align: center;
    line-height: 1.9;
    letter-spacing: 0.2px;
    word-spacing: normal;
  }

  .sobre-text h2,
  .sobre .tag {
    display: block;

    width: 100%;

    text-align: center;

    margin-bottom: 18px;
  }
  .accordion button {
    min-height: 68px;
    padding: 0 20px;
    font-size: 14px;
  }
  .accordion-content {
    padding: 0 30px 24px 73px;
  }
  .processo-card {
    min-height: auto;
    padding: 30px;
  }
  .resultados-carousel {
    padding: 80px 0 50px;
  }
  .resultados-top {
    margin-bottom: 26px;
    flex-wrap: wrap;
  }
  .resultados-top h2 {
    width: 100%;
    order: -1;
  }
  .resultado-card {
    height: 330px;
  }
  .cta {
    margin: 70px auto;
    padding: 70px 24px;
  }
  .cta p {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .resultado-card {
    height: 290px;
  }
  .carousel-btn {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #090909;
}
::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: linear-gradient(var(--gold), var(--gold-dark));
}

/* =====================================================
   CORREÇÃO DE CLIQUES E TOQUES NO MOBILE
===================================================== */

/* Remove o atraso artificial de toque */
a,
button,
.btn,
.btn-plano,
.carousel-btn,
.contact-trigger,
.contact-option,
.accordion button,
.faq-item button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Elementos puramente visuais não podem bloquear cliques */
.hero-overlay,
.hero-image::before,
.gold-shape,
.green-shape,
.processo-card::after,
.sobre-img::before,
.cta::before,
.destaque::before {
  pointer-events: none;
}

/* O container do botão flutuante não bloqueia a página */
.contact-widget {
  pointer-events: none;
}

/* Apenas os elementos realmente clicáveis recebem o toque */
.contact-trigger,
.contact-widget.active .contact-menu,
.contact-menu a {
  pointer-events: auto;
}

/* Menu fechado não pode capturar cliques invisivelmente */
.contact-menu {
  pointer-events: none;
}

.contact-widget.active .contact-menu {
  pointer-events: auto;
}

/* Garante que botões e links fiquem acima das decorações */
.btn,
.btn-plano,
.carousel-btn,
.accordion button,
.faq-item button {
  position: relative;
  z-index: 2;
}

/* No celular, evita o primeiro toque servir apenas como hover */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .btn-plano:hover,
  .plano:hover,
  .accordion:hover,
  .faq-item:hover,
  .processo-card:hover,
  .contact-option:hover,
  .carousel-btn:hover {
    transform: none;
  }

  .accordion:hover,
  .faq-item:hover,
  .plano:hover,
  .processo-card:hover {
    box-shadow: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  .contact-trigger:hover {
    transform: none;
  }
}
