:root {
  --primary: #0b2fa7;
  --primary-light: #1e4fd9;
  --secondary: #ffd400;
  --secondary-hover: #ffe44d;
  --text-main: #14214d;
  --text-muted: #444;
  --bg-light: #f8fbff;
  --white: #ffffff;
  --success: #25d366;
  --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.05);
  --radius-lg: 32px;
  --radius-md: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, var(--bg-light) 0%, #eef4ff 100%);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toastFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* ELEMENTOS COM ANIMAÇÃO (Scroll Reveal Sênior) */
.section-box,
.card,
.step,
.kit-card-premium,
.step-card-new,
.benefit-card,
.trust-banner,
.seo-text-premium,
.stats,
.testimonials {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1),
              transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: opacity, transform;
}

.section-box.visible,
.card.visible,
.step.visible,
.kit-card-premium.visible,
.step-card-new.visible,
.benefit-card.visible,
.trust-banner.visible,
.seo-text-premium.visible,
.stats.visible,
.testimonials.visible {
  opacity: 1;
  transform: translateY(0);
}

.card {
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.8s;
  z-index: 2;
  pointer-events: none;
}

.card:hover::before {
  left: 120%;
}

/* HEADER SÊNIOR GLASSMORPHISM */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  z-index: 2000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.8) !important;
  padding: 8px 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* LOGO & BRAND */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 58px;
  transition: transform 0.3s;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary) !important;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name span {
  color: var(--secondary) !important;
}

.logo-text p {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--primary) !important;
  margin-top: 2px;
  opacity: 1;
}

/* MENU MOBILE */
.menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: 10001;
  /* Aumentado para ficar acima do nav mobile */
}

.menu-toggle-btn span {
  width: 28px;
  height: 3px;
  background: #0b2fa7;
  border-radius: 3px;
  transition: 0.3s;
}

nav {
  display: flex;
  gap: 8px;
  /* Reduzido de 15px para caber melhor */
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #0b2fa7;
  font-weight: 700;
  padding: 8px 16px;
  /* Reduzido de 12px 24px */
  border-radius: 40px;
  transition: 0.3s;
  font-size: 14px;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  background: #0b2fa7;
  color: #fff;
}

/* BOTÃO INSTALAR APP */
.install-app-btn {
  background: #0b2fa7;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 40px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.install-app-btn i {
  font-size: 14px;
}

.install-app-btn:hover {
  background: #1e4fd9;
  transform: translateY(-1px);
}

.install-app-btn[hidden] {
  display: none !important;
}

/* HERO */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -85px; /* PUXA O HERO PARA TRÁS DO HEADER GLASS */
  padding-top: 100px; /* GARANTE QUE O CONTEÚDO FIQUE VISÍVEL ABAIXO DO MENU */
}

.hero img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero:hover img.bg {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(115deg, rgba(11, 47, 167, 0.88) 0%, rgba(11, 47, 167, 0.7) 5%, rgba(0, 0, 0, 0.3) 70%); */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  width: 100%;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.left {
  max-width: 620px;
  color: #fff;
}

.left h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff 0%, #ffd400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.left h1 span {
  display: block;
  font-size: 0.7em;
  opacity: 0.95;
  background: none;
  -webkit-text-fill-color: #ffd400;
}

.urgency-badge {
  display: inline-block;
  background: #e67e22;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite;
}

.left p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  margin-top: 10px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  max-width: 550px;
}

.btn-main {
  display: inline-block;
  background: #ffd400;
  color: #0b2fa7;
  padding: 18px 42px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  margin-bottom: 25px;
  margin-top: 5px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.5px;
}

.btn-main:hover {
  transform: scale(1.05);
  background: #ffe44d;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.badge {
  display: inline-block;
  background: rgba(99, 132, 240, 0.20);
  backdrop-filter: blur(10px);
  /* border: 1.5px solid #ffd400; */
  padding: 14px 32px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

.right-badge {
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
  /* Garante que seja um círculo perfeito */
  flex-shrink: 0;
  /* Impede que ele seja esmagado */
  border-radius: 50%;
  background: rgba(11, 47, 167, 0.85);
  backdrop-filter: blur(8px);
  border: 3px solid #ffd400;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.right-badge span {
  color: #ffd400;
}

/* CONTAINER */
.container {
  max-width: 1450px;
  margin: auto;
  padding: 35px 20px;
}

.section-box {
  background: #fff;
  border-radius: 28px;
  padding: 45px 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  margin-bottom: 35px;
}

.sec-title {
  font-size: 42px;
  font-weight: 900;
  color: #0b2fa7;
  text-align: center;
  margin-bottom: 24px;
  font-family: 'Playfair Display', 'Georgia', serif;
}

.sec-title:after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: #ffd400;
  margin: 15px auto 0;
  border-radius: 4px;
}

.stock-alert {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  padding: 18px 25px;
  background: linear-gradient(135deg, #fff8e8, #fff);
  border: 1px dashed #e67e22;
  border-radius: 60px;
  color: #d35400;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* SEO PREMIUM */
.seo-text-premium {
  background: white;
  border-radius: 32px;
  padding: 60px 45px;
  margin-bottom: 40px;
  border: 1px solid #f0f4fa;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.seo-header {
  text-align: center;
  margin-bottom: 45px;
}

.seo-badge {
  display: inline-block;
  background: #eef3ff;
  color: #0b2fa7;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.seo-header h3 {
  font-size: 32px;
  color: #0b2fa7;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

.seo-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: start;
}

.seo-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.sobre-flex-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}

.sobre-text-side {
  flex: 1.6;
}

.sobre-text-side p {
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  font-size: 15px;
}

.sobre-logo-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo-circle-wrapper {
  width: 220px;
  height: 220px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 10px;
}

.logo-circle-wrapper img {
  max-width: 85%;
  height: auto;
}

@media (max-width: 900px) {
  .sobre-flex-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}


.regions {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid #f0f4fa;
}

.regions h4 {
  font-size: 18px;
  color: #0b2fa7;
  margin-bottom: 20px;
  font-weight: 800;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.region-tags span {
  background: #f8fbff;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 13px;
  color: #0b2fa7;
  font-weight: 700;
  border: 1px solid #eef3ff;
  transition: all 0.3s ease;
}

.region-tags span:hover {
  background: #0b2fa7;
  color: white;
  transform: translateY(-3px);
}

.how-it-works-seo {
  background: #f8fbff;
  border-radius: 24px;
  padding: 30px;
  margin-top: 30px;
}

.how-it-works-seo h4 {
  font-size: 17px;
  color: #0b2fa7;
  margin-bottom: 20px;
}

.sec-description-center {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--text-muted);
}

/* COMO FUNCIONA - NOVO LAYOUT */
.steps-new-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-card-new {
  background: #fff;
  border-radius: 30px;
  padding: 50px 30px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 45px rgba(11, 47, 167, 0.04);
  border: 1px solid rgba(11, 47, 167, 0.05);
  transition: all 0.3s ease;
}

.step-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(11, 47, 167, 0.08);
}

.step-badge-top {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.step-icon-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.step-icon-circle.blue {
  background: #0b2fa7;
  color: white;
}

.step-icon-circle.green {
  background: #25d366;
  color: white;
}

.step-icon-circle.yellow {
  background: #ffd400;
  color: #14214d;
}

.step-icon-circle.pink {
  background: #ffe3ec;
  color: white;
  border: 1px solid #ffb6c1;
}

.step-card-new h3 {
  font-size: 18px;
  color: #14214d;
  margin-bottom: 12px;
}

.step-card-new p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.steps-seo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.step-seo {
  background: white;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

/* O código do whats-float foi movido para a seção unificada no final do arquivo */

.step-num {
  background: #ffd400;
  color: #0b2fa7;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.seo-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-card {
  background: white;
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid #f0f4fa;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.15);
  border-color: #25d366;
}

.benefit-card:hover i {
  transform: scale(1.1);
  color: #25d366;
  transition: 0.3s;
}

.benefit-card i {
  font-size: 26px;
  color: #ffd400;
  /* Ícone Amarelo Vibrante */
  min-width: 30px;
  text-align: center;
}

.benefit-card strong {
  display: block;
  font-size: 15px;
  color: #0b2fa7;
  /* Título Azul Forte */
  margin-bottom: 2px;
}

.benefit-card small {
  display: block;
  font-size: 11px;
  color: #666;
  /* Subtexto cinza legível */
  line-height: 1.3;
}

.benefit-card.highlight {
  background: #0b2fa7;
  /* Fundo Azul */
  border: none;
}

.benefit-card.highlight strong {
  color: white;
}

.benefit-card.highlight small {
  color: rgba(255, 255, 255, 0.8);
}

.benefit-card.highlight i {
  color: #ffd400;
}

/* TRUST BANNER */
.trust-banner {
  background: linear-gradient(135deg, #0b2fa7, #1e4fd9);
  border-radius: 20px;
  padding: 32px 25px;
  margin-bottom: 35px;
  text-align: center;
  color: white;
}

.trust-banner p {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.trust-banner .counter {
  font-size: 52px;
  font-weight: 900;
  color: #ffd400;
  display: inline-block;
  margin: 0 4px;
}

.trust-banner p {
  font-size: 36px;
}

.trust-banner p .emoji,
.trust-banner p i.fa,
.trust-banner p i.fas {
  font-size: 40px;
  vertical-align: middle;
}

/* KITS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}

/* KITS PREMIUM CLONE - CORRIGIDO */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.kit-card-premium {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(11, 47, 167, 0.05);
}

/* Efeito de Brilho (Shine) que você pediu */
.kit-card-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
  z-index: 10;
}

.kit-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11, 47, 167, 0.15);
  /* border-color: var(--primary); */
}

.kit-card-premium:hover::after {
  left: 150%;
  transition: all 0.6s ease;
}

.kit-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffd400;
  color: #0b2fa7;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

.kit-img-container {
  overflow: hidden;
  height: 260px;
}

.kit-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  cursor: pointer;
}

.kit-card-premium .card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.kit-title {
  font-size: 24px;
  color: #0b2fa7;
  font-weight: 800;
  margin-bottom: 15px;
}

.kit-items-list {
  padding-left: 20px;
  margin-bottom: 25px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  flex-grow: 1;
}

.kit-items-list li {
  margin-bottom: 5px;
}

.kit-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f4fa;
}

.price-prefix {
  font-size: 13px;
  color: #888;
}

.price-value {
  font-size: 28px;
  font-weight: 900;
  color: #0b2fa7;
}

.btn-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, #1e4fd9 100%);
  color: white;
  border: none;
  padding: 18px 25px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(11, 47, 167, 0.2);
}

.btn-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(11, 47, 167, 0.3);
  filter: brightness(1.1);
}


/* ESTATÍSTICAS */
.stats {
  background: #fff;
  border-radius: 28px;
  padding: 35px 40px;
  margin-bottom: 35px;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #0b2fa7;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #0b2fa7;
}

.stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* STEPS COMO FUNCIONA */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step {
  border: 1px solid #edf1f7;
  padding: 32px 20px;
  border-radius: 24px;
  text-align: center;
  background: #fff;
  transition: all 0.3s;
}

.step:hover {
  transform: translateY(-8px);
  border-color: #ffd400;
}

.num {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #0b2fa7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 28px;
  margin: 0 auto 15px;
}

.step h3 {
  font-size: 22px;
  color: #0b2fa7;
  margin-bottom: 10px;
}

.step p {
  color: #666;
  font-size: 14px;
}

/* DEPOIMENTOS IDENTICO À REFERÊNCIA */
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0b2fa7 0%, #1e4fd9 100%);
  border-radius: 32px;
  margin-top: 50px;
  text-align: center;
}

.testimonials .sec-title {
  color: white;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 60px;
  /* Espaço para as setas nas pontas */
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  /* Garante exatamente 3 por linha */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  color: white;
  text-align: center;
  box-sizing: border-box;
}

.stars {
  color: #ffd400;
  margin-bottom: 15px;
  font-size: 18px;
}

.testimonial-text {
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 800;
  color: #ffd400;
  font-size: 14px;
}

/* BOTÕES IDENTICOS À IMAGEM */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: #0b2fa7;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: #ffd400;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 5px;
}

.carousel-btn.next {
  right: 5px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 25px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #ffd400;
  width: 40px;
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .carousel-container {
    padding: 0 40px;
  }
}

/* CONTATO - LEVE E LIMPO */
.contact {
  background: linear-gradient(135deg, #f8fbff 0%, #f0f4fa 100%);
  border-radius: 32px;
  padding: 80px 40px;
  margin-top: 50px;
  margin-bottom: 50px;
  color: #14214d;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.contact i.big {
  font-size: 85px;
  color: #25d366;
  margin-bottom: 20px;
}

.contact p {
  font-size: 24px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.5;
}

.btn-whats {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 20px 50px;
  border-radius: 60px;
  text-decoration: none;
  font-size: 28px;
  font-weight: 900;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whats:hover {
  background: #1da851;
  transform: scale(1.02);
}

.location {
  margin-top: 28px;
  font-size: 22px;
  font-weight: 800;
  color: #0b2fa7;
}

.location br {
  margin-bottom: 10px;
}

.scarcity {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 800;
  color: #e67e22;
  background: #fff8e8;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
}

/* WHATSAPP FLOAT */
/* Removida duplicata do whats-float */

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 900px;
  top: 50%;
  transform: translateY(-50%);
  animation: zoomIn 0.3s ease;
}

.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10000;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.modal-close:hover {
  color: #ffd400;
  transform: scale(1.1);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* TOAST NOTIFICATION */
.toast-notification {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  animation: toastFadeIn 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  max-width: 90%;
  white-space: normal;
  text-align: center;
  font-family: sans-serif;
}

/* FOOTER */
.footer-premium {
  background: #233142;
  color: #aeb9c7;
  padding: 70px 20px 40px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-logo-box {
  background: white;
  width: 90px;
  height: 90px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-logo-box img {
  width: 75%;
}

.footer-column.brand p {
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 25px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #0b2fa7;
  transform: translateY(-3px);
}

.footer-column h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 30px;
  font-family: inherit;
  font-weight: 700;
}

.footer-links,
.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact-list li {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-links a {
  color: #aeb9c7;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-list i {
  color: #e67e22;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  text-align: center;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-logo-box,
  .footer-social-icons {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-column.brand p {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }

  .footer-contact-list li {
    justify-content: center;
  }
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12.5px);
  }
}

@media (max-width: 1100px) {
  .menu-toggle-btn {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    right: 0;
  }

  .menu-toggle-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
  }

  .menu-toggle-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -6px);
  }

  .hero-content {
    padding: 0 25px;
    flex-direction: column;
    text-align: center;
  }

  .right-badge {
    display: none;
  }

  .left {
    text-align: center;
  }

  .left p {
    margin-left: auto;
    margin-right: auto;
  }

  .left h1 {
    font-size: 36px;
  }

  .seo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .seo-header h3 {
    font-size: 24px;
  }

  .stats-grid {
    gap: 30px;
  }

  .stat-number {
    font-size: 32px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .carousel-container {
    padding: 0 35px;
  }

  .section-box {
    padding: 30px 25px;
  }

  .sec-title {
    font-size: 28px;
  }

  .btn-whats {
    font-size: 20px;
    padding: 14px 30px;
  }

  .whats-float {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 500px;
  }

  .left h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .left p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .urgency-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .btn-main {
    font-size: 16px;
    padding: 14px 28px;
  }

  .badge {
    font-size: 11px;
    padding: 10px 16px;
  }

  .trust-banner p {
    font-size: 16px;
  }

  .trust-banner .counter {
    font-size: 32px;
  }

  .card img {
    height: 180px;
  }

  .price {
    font-size: 18px;
    padding: 6px 14px;
  }

  .card ul {
    font-size: 13px;
  }

  .toast-notification {
    bottom: 80px;
    font-size: 12px;
    padding: 10px 18px;
  }

  .modal-content {
    width: 95%;
    padding: 10px;
  }

  .modal-close {
    top: -35px;
    font-size: 30px;
  }
}

/* ==========================================
   WHATSAPP FLOAT DEFINITIVO (SÊNIOR)
   ========================================== */
.whats-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: auto !important;
  height: auto !important;
  padding: 14px 28px;
  border-radius: 60px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff !important;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  z-index: 99999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse-whatsapp-new 2s infinite;
  white-space: nowrap;
}

.whats-float i {
  font-size: 24px;
}

@keyframes pulse-whatsapp-new {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whats-float:hover {
  transform: translateY(-5px) scale(1.02);
  background: #1da851;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  color: #fff !important;
}

@media (max-width: 600px) {
  .whats-float {
    padding: 12px 20px;
    font-size: 14px;
    bottom: 20px;
    right: 20px;
  }
}