/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BACKGROUND GLOBAL ================= */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e6e8eb;
  background:
    radial-gradient(circle at top, rgba(80,120,255,0.18), transparent 40%),
    linear-gradient(180deg, #0b1220 0%, #0a1628 60%, #08101c 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ================= BLOBS ================= */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.55;
  z-index: -1;
}

body::before {
  top: -220px;
  left: -220px;
  background: #8b5cf6;
}

body::after {
  bottom: -220px;
  right: -220px;
  background: #38bdf8;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: rgba(15, 25, 45, 0.88);
  backdrop-filter: blur(14px);
  padding: 1rem 0;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  z-index: 1000;
}

/* CORREÇÃO AQUI */
body {
  padding-top: 140px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 2.5rem;
  position: relative;
}

/* ================= LOGO ================= */
.logo {
  position: relative;
}

.logo img {
  width: 220px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}


/* ================= MENU DESKTOP ================= */
.desktop-menu {
  display: flex;
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: #cfd6ff;
  text-decoration: none;
}

.nav-links a:hover {
  color: #5da9ff;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #cfd6ff;
  border-radius: 2px;
}

/* ================= MENU MOBILE ================= */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: rgba(15, 25, 45, 0.25);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);

  /* 🔧 ÚNICO ACRÉSCIMO */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  color: #cfd6ff;
}

.mobile-menu.active {
  display: flex;
}


/* ================= HERO ================= */
.hero {
  padding: 10rem 0 6rem;
  margin-top: -50px;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  align-items: center;
  gap: 72px;
  row-gap: 0.8rem; /* ✅ CONTROLA ESPAÇO ENTRE TEXTO */
}

/* IMAGEM */
.hero-image {
  width: 100%;
  max-width: 460px;
  grid-row: 1 / 4;
}

/* TEXTO */
.hero-content h1 {
  margin: 0; /* ✅ REMOVE MARGEM NEGATIVA */
  font-size: 3.2rem;
  line-height: 1.18;
  font-weight: 600;

  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  margin: 0; /* ✅ REMOVE MARGEM MANUAL */
  font-size: 1.1rem;
  line-height: 1.6;
  color: #aab2d5;
  max-width: 460px;
}

/* BOTÃO */
.hero-content .btn {
  width: fit-content;
  padding: 1rem 2.6rem;
  border-radius: 14px;
}


/* ================= RESPONSIVO HERO ================= */
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    width: 300px;
    margin-bottom: 2rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}


/* ================= BOTÕES ================= */
.btn {
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  border-radius: 10px;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  color: #fff;
  margin-top: 20px;
}

/* ================= CONTAINER PADRÃO ================= */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 0;
}

/* ================= AUTOMATION STEPS ================= */
.automation-steps {
  padding: 4rem 0 5rem;
  text-align: center;
  margin-top: -60px;
}

.automation-steps h2 {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.steps-subtitle {
  max-width: 620px;
  margin: 0 auto 3rem;
  color: #aab2d5;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  text-align: left;
}

.step-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #38bdf8);
  color: #fff;
}

/* ================= PLANS ================= */
.plans h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-top: 13px;
}

.plans .grid {
  display: flex;
  gap: 2.4rem;
}

/* ================= PLAN CARD ================= */
.plan-card {
  position: relative;
  padding: 2.2rem 2rem;
  border-radius: 20px;
  text-align: center;

  display: flex;
  flex-direction: column;

  width: 350px; /* 🔥 todos ficam com tamanho fixo igual ao do meio */
  max-width: 100%;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.02)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 25px 60px rgba(0,0,0,0.35);
}

.plan-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.8rem;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.plan-card p:nth-of-type(1) {
  color: #aab2d5;
  margin-bottom: 1.4rem;
}

.plan-card .btn {
  margin-top: auto;
  padding: 0.9rem 2.6rem;
  border-radius: 14px;
}

.plan-card.featured {
  background:
    linear-gradient(
      180deg,
      rgba(139,92,246,0.14),
      rgba(56,189,248,0.10)
    );
}

.plan-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  box-shadow: 0 10px 30px rgba(56,189,248,0.45);
}

.pricing-container {
  display: flex;
  justify-content: center; /* CENTRALIZA os cards */
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap; /* Responsivo */
}


/* ================= FOOTER ================= */
.footer {
  margin-top: 3rem;
  padding: 1.4rem 0 0.8rem;
  background: rgba(8,16,28,0.9);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.footer-brand img {
  max-height: 140px;
  width: auto;
  margin-bottom: 0.6rem;
  object-fit: contain;
  transform: scale(1.6);
  transform-origin: left center;
}

.footer-brand p {
  max-width: 360px;
  font-size: 1rem;
  color: #aab2d5;
}

.footer-links h4 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.footer-links a {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  color: #aab2d5;
  text-decoration: none;
}

.footer-links a:hover {
  color: #5da9ff;
}

.footer-bottom {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 1rem;
  color: #9aa4c7;
}

/* ================= RESPONSIVO ================= */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .hero-image {
    width: 300px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .plans .grid {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    transform-origin: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}

/* ================= ADIÇÃO FINAL (SEM ALTERAR NADA ACIMA) ================= */

/* impede que a navbar corte o menu */
.navbar {
  overflow: visible;
}

/* garante clique e visibilidade no mobile */
@media (max-width: 768px) {
  .mobile-menu {
    z-index: 9999;
  }
}

/* ================= CARD DE CONVERSÃO ================= */

.conversion-card {
  margin: 80px 0;
  margin-top: 120px;
}

.conversion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 64px;
  border-radius: 24px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 25px 60px rgba(0,0,0,0.35);

  align-items: center;
}

.conversion-image img {
  width: 100%;
  max-width: 420px;
}

/* ================= TEXTO ================= */

.conversion-text {
  max-width: 520px;
}

/* linha principal */
.conversion-line {
  font-size: 2.2rem;
  line-height: 1.35;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 18px;
}

/* texto secundário (2012) */
.conversion-line.muted {
  opacity: 0.55;
  font-weight: 400;
  font-size: 2rem;
}

/* destaque APENAS em "dominar o mercado" */
.conversion-line strong {
  font-weight: 700;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}


/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .conversion-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px;
  }

  .conversion-image img {
    margin: 0 auto;
  }

  .conversion-text {
    margin: 0 auto;
  }
}

/* ================= CORREÇÃO TOTAL DO SUPORTE ================= */

/* container geral */
.support-light {
  padding: 5rem 0 6rem;
  text-align: center;
  margin-top: -60px;
}

/* título com mesmo gradient do site */
.support-light-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* subtítulo */
.support-light-subtitle {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  color: #aab2d5;
}

/* GRID IGUAL AO DOS PLANOS */
.support-light-grid {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  gap: 2.4rem;

  justify-content: center;
  margin: 0 auto 6rem;
  max-width: 900px;
}


.support-light-grid {
  margin-bottom: 6rem; /* cria espaço real antes do botão */
}

/* CARD = PLAN CARD */
.support-light-card {
  position: relative;
  min-height: 360px;
  padding: 3rem 2.2rem;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.02)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 25px 60px rgba(0,0,0,0.35);
}

/* ícone */
.support-light-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.6rem;
  border-radius: 14px;

  background: linear-gradient(135deg, #8b5cf6, #38bdf8);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* título do card */
.support-light-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* texto */
.support-light-card p {
  color: #aab2d5;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* BOTÃO IGUAL AOS OUTROS */
.support-light-cta {
  margin-top: 6rem;
  padding: 1.3rem 2.6rem;
  border-radius: 14px;

  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  color: #fff;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 14px 35px rgba(56,189,248,0.45);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .support-light-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .support-light-grid {
    grid-template-columns: 1fr;
  }
}

.avaliacoes {
  padding: 80px 20px;
  background: transparent;
  text-align: center;
  margin-top: -30px;
}

.avaliacoes-titulo {
  font-size: 2.4rem;
  margin-bottom: 3rem;

  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.avaliacoes-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.avaliacao-card {
  padding: 32px 24px;
  border-radius: 20px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.02)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 25px 60px rgba(0,0,0,0.35);

  display: flex;
  flex-direction: column;
  align-items: center;

  color: #e6e8eb;
}


.avaliacao-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1f4fd8;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.avaliacao-avatar.logo {
  background: #000;
}

.avaliacao-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  padding: 6px;
}

.avaliacao-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.avaliacao-estrelas {
  color: #f4b400;
  font-size: 18px;
  margin-bottom: 16px;
}

.avaliacao-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #aab2d5;
}

/* ================= HERO MOBILE AJUSTE FINAL ================= */
@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;               /* 🔥 aproxima tudo */
    text-align: center;
  }

  .hero-image {
    grid-row: auto;
    max-width: 280px;        /* proporção correta no mobile */
    margin: 0 auto;
  }

  .hero-content h1 {
    margin-top: 0;
    margin-bottom: 0.6rem;  /* 🔥 texto mais junto */
  }

  .hero-content p {
    margin-top: 0;
    margin-bottom: 1.2rem;  /* 🔥 aproxima do botão */
  }

  .hero-content .btn {
    margin: 0 auto;         /* botão centralizado e colado */
  }
}

/* ================= SEÇÃO MIT ================= */

.mit-section {
  width: 100%;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  margin-top: -60px;
}

.mit-container {
  max-width: 1200px;
  width: 100%;
}

.mit-header {
  text-align: center;
  margin-bottom: 60px;
}

.mit-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto 20px;

  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}


.mit-subtitle {
  font-size: 20px;
  color: #9ca3af;
}


.mit-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.mit-image-box {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.mit-image {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mit-text {
  flex: 1;
  min-width: 320px;
  max-width: 520px;
}

.mit-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #cbd5e1;
}


/* ================= RESPONSIVO ================= */

@media (max-width: 992px) {

  .mit-title {
    font-size: 32px;
  }

  .mit-content {
    flex-direction: column;
    gap: 40px;
  }

  .mit-text {
    text-align: center;
  }

}

/* ================= SEÇÃO DOR ================= */

.pain-section {
  width: 100%;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  margin-top: -60px;
}

.pain-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

/* ===== TÍTULO PADRÃO DO SITE ===== */

.pain-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 70px;
  margin-top: -25px;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ===== CARDS ===== */

.pain-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pain-card {
  width: 240px;
  padding: 28px 24px;
  border-radius: 16px;

  background: rgba(15, 25, 45, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);

  transition: 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.pain-card p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* ===== ÍCONE ===== */

.pain-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* ================= COMPARAÇÃO IA (COM IMAGENS) ================= */

.comparison-section {
  width: 100%;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  margin-top: -60px;
}

.comparison-container {
  max-width: 1200px;
  width: 100%;
}

.comparison-top {
  display: flex;
  gap: 80px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.comparison-left {
  flex: 1;
  min-width: 320px;
}

.comparison-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;

  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.comparison-right {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.comparison-right p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 19px;
}

/* Cards */

.comparison-cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.comparison-card {
  text-align: center;
  flex: 1;
  min-width: 320px;
  padding: 40px;
  border-radius: 20px;

  background: rgba(15, 25, 45, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Badge */

.comparison-badge {
  padding: 10px 18px;
  border-radius: 30px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 30px;
}

.comparison-badge.danger {
  background: rgba(255, 0, 0, 0.15);
  color: #ff4d4d;
}

.comparison-badge.success {
  background: rgba(0, 255, 100, 0.15);
  color: #22c55e;
}

/* Imagem */

.comparison-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.comparison-image img {
  max-width: 100%;
  border-radius: 12px;
}

/* Fonte */

.comparison-source {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

/* Responsivo */

@media (max-width: 992px) {
  .comparison-title {
    font-size: 32px;
  }

  .comparison-top {
    flex-direction: column;
    gap: 40px;
  }

  .comparison-cards {
    flex-direction: column;
  }
}

/* Centralizar badge sem alterar tamanho */

.comparison-badge {
  display: inline-block;
  margin: 0 auto 25px auto;
  text-align: center;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  text-align: left;
  color: #aab2d5;
  font-size: 0.95rem;
}

.plan-features li {
  margin-bottom: 0.6rem;
}

.plan-price-box {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.old-price {
  font-size: 0.85rem;
  opacity: 0.5;
  position: relative;
  display: inline-block;
}

.old-price::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.6);
  transform: translateY(-50%);
}

.installments {
  font-size: 1.4rem; /* ligeiramente menor */
  font-weight: 700;
  margin: 0;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  white-space: nowrap;
}

.installments .period {
  font-size: 1.1rem;
  font-weight: 600;
  margin-left: 4px;
}

.total-price {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-top: 8px;
}

.floating-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 55px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.floating-icon svg {
  width: 100%;
  height: 100%;
  color: #ffffff; /* branco */
  transition: transform 0.3s ease;
}

.floating-icon:hover svg {
  transform: scale(1.1);
}