@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* ===== CONFIGURAÇÕES BASE E VARIÁVEIS ===== */
:root {
  --primary: #5e17eb;
  --secondary: #ff0080;
  --accent: #00d4ff;
  --gold: #ffd700;
  --dark: #0a0a0f;
  --glass: rgba(255, 255, 255, 0.03);

  /* Variáveis otimizadas para whites */
  --white-01: rgba(255, 255, 255, 0.1);
  --white-02: rgba(255, 255, 255, 0.2);
  --white-03: rgba(255, 255, 255, 0.3);
  --white-05: rgba(255, 255, 255, 0.05);
  --white-07: rgba(255, 255, 255, 0.7);
  --white-08: rgba(255, 255, 255, 0.8);
  --white-09: rgba(255, 255, 255, 0.9);
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Configuração do body */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background: var(--dark);
  color: #ffffff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Correção global para imagens */
img {
  max-width: 100%;
  height: auto;
}

/* ===== EFEITOS DE FUNDO ===== */

/* Mesh gradient otimizado - versão estática */
.mesh-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(at 20% 80%, var(--primary) 0, transparent 40%),
    radial-gradient(at 80% 20%, var(--secondary) 0, transparent 40%);
  filter: blur(80px);
  opacity: 0.15;
}

/* ===== NAVEGAÇÃO ===== */

/* Logo no canto (desktop) */
.logo-corner {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 999;
  width: 200px;
  max-width: 200px;
  height: auto;
  overflow: hidden;
}

.logo-corner img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* Container do menu */
.nav-container {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--white-01);
  border-radius: 100px;
  padding: 15px 30px;
  display: flex;
  gap: 30px;
  align-items: center;
  box-shadow: 0 8px 32px var(--white-02);
  overflow: hidden;
  max-height: 70px;
}

/* Links do menu */
.nav-container a:not(.nav-logo) {
  color: var(--white-09);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  font-size: 15px;
  padding: 6px 12px;
  border-radius: 25px;
  background: var(--white-05);
  backdrop-filter: blur(10px);
}

.nav-container a:not(.nav-logo):hover,
.nav-container a:hover {
  background: var(--white-01);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Botão especial do menu */
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 10px 20px;
  border-radius: 50px;
  color: white !important;
  font-weight: 700;
}

/* Logo no menu (mobile) */
.nav-logo {
  display: flex;
  align-items: center;
  padding: 0;
  max-width: 40px;
  height: 40px;
  overflow: hidden;
}

.logo-icon {
  height: 40px;
  width: auto;
  max-height: 40px;
  max-width: 40px;
  object-fit: contain;
  display: block;
}

/* ===== SEÇÃO HERO ===== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 20px 80px;
  overflow: visible;
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  position: relative;
  z-index: 10;
}

/* Título principal */
.hero h1 {
  font-size: clamp(60px, 10vw, 110px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  padding-top: 20px;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  background-size: 200% 200%;
  animation: subtleGradient 8s ease infinite;
  position: relative;
  overflow: visible;
}

/* Efeito shimmer no título */
.hero h1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--white-01) 50%,
    transparent 100%
  );
  animation: shimmer 6s infinite;
}

/* Subtítulo */
.hero-subtitle {
  font-size: 24px;
  color: var(--white-07);
  margin-bottom: 50px;
  font-weight: 300;
  animation: fadeInUp 1.4s ease-out 0.2s both;
}

/* ===== DESTAQUE ANIMADO PARA INSTAGRAM ===== */
.instagram-animated {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Grupo de botões */
.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.6s ease-out 0.4s both;
}

/* Container do vídeo */
.video-container {
  margin: 60px auto 0;
  max-width: 800px;
  animation: fadeInUp 1.5s ease-out 0.5s both;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(94, 23, 235, 0.4);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== BOTÕES ===== */

.future-btn {
  padding: 20px 40px;
  border: none;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Botões com gradiente */
.future-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 10px 40px rgba(94, 23, 235, 0.4);
}

/* Botão secundário */
.future-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid var(--white-03);
  backdrop-filter: blur(10px);
}

/* Hover dos botões */
.future-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(94, 23, 235, 0.4);
}

/* ===== SEÇÕES ===== */

.services,
.stats,
.pricing {
  padding: 150px 20px;
  position: relative;
}

/* Títulos de seção */
.section-title {
  text-align: center;
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 80px;
  position: relative;
}

.gradient-text {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtítulo das seções */
.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--white-08);
  font-weight: 400;
  margin-bottom: 60px;
  margin-top: -40px;
  line-height: 1.4;
}

.section-subtitle span {
  font-size: 16px;
  color: var(--white-07);
  font-weight: 300;
  display: block;
  margin-top: 8px;
}

/* ===== BENTO GRID ===== */

.services {
  padding: 150px 20px;
  position: relative;
}

/* ===== GRID SIMPLES ===== */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* ===== CARD DE SERVIÇO OTIMIZADO ===== */
.service-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-01);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.service-card:hover {
  border-color: var(--accent);
}

.service-card.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.coming-soon-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===== ÍCONES ===== */
.service-icon {
  margin-bottom: 25px;
}

.platform-icon {
  width: 170px;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(94, 23, 235, 0.3));
}

/* ===== CONTEÚDO ===== */
.service-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white-09);
}

.service-desc {
  font-size: 16px;
  color: var(--white-07);
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s ease;
}

.service-card:hover .service-cta {
  transform: translateY(-2px);
}

/* ===== CARD INSTAGRAM CLICÁVEL NO INDEX ===== */
.service-card.instagram {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card.instagram:hover {
  text-decoration: none;
  color: inherit;
}

/* ===== ESTATÍSTICAS ===== */

.stats {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 255, 179, 0.1),
    transparent
  );
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-number {
  font-size: 80px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: block;
  animation: countUp 2s ease-out;
}

/* ===== PREÇOS ===== */

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.price-card {
  background: var(--dark);
  border: 3px solid var(--primary);
  border-radius: 0;
  padding: 50px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 10px 10px 0 var(--primary);
  will-change: transform;
}

.price-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 15px 15px 0 var(--primary);
}

.price-card.featured {
  border-color: var(--gold);
  box-shadow: 10px 10px 0 var(--gold);
}

.price-card.featured:hover {
  transform: translate(-5px, -5px);
  box-shadow: 15px 15px 0 var(--gold);
}

.price-tag {
  position: absolute;
  top: -20px;
  right: 30px;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: rotate(-5deg);
}

.price-value {
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin: 30px 0;
}

/* Classes adicionais para preços */
.price-card-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.price-list {
  list-style: none;
  margin: 30px 0;
  line-height: 2;
}

.price-btn {
  width: 100%;
  text-align: center;
}

/* ===== MODAL ===== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 20px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 50px;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--primary);
}

.modal-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* ===== LOADING SCREEN ===== */

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
}

.loader-logo img {
  width: 250px;
  height: auto;
  max-width: 80vw;
  filter: drop-shadow(0 0 20px rgba(94, 23, 235, 0.5));
  animation: pulseLogo 0.7s ease-in-out infinite;
}

/* Nova animação mais visível */
@keyframes pulseLogo {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(94, 23, 235, 0.5));
  }
  50% {
    transform: scale(1.1); /* Aumenta 10% */
    filter: drop-shadow(0 0 30px rgba(94, 23, 235, 0.8));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(94, 23, 235, 0.5));
  }
}

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

.footer {
  padding: 80px 20px 20px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.95));
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: scan 3s linear infinite;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-section {
  max-width: 350px;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-desc {
  color: var(--white-07);
  line-height: 1.6;
  font-size: 14px;
}

.footer-column h4 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--white-07);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-info {
  list-style: none;
  color: var(--white-07);
  font-size: 15px;
  line-height: 2;
}

.payment-methods {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: 30px;
  border-radius: 10px;
  background: var(--white-05);
  padding: 15px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--white-01);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.title-container {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

/* ===== SEÇÃO DE CONFIANÇA - CARDS CLICÁVEIS ===== */

.trust-section {
  padding: 80px 20px;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(94, 23, 235, 0.05),
    rgba(255, 0, 128, 0.05),
    rgba(0, 212, 255, 0.05)
  );
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-header {
  text-align: center;
  margin-bottom: 60px;
}

.trust-title {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
}

.trust-subtitle {
  font-size: 18px;
  color: var(--white-07);
  font-weight: 300;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

/* ===== CARD CLICÁVEL ===== */
.trust-card {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--white-01);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.trust-card:hover {
  border-color: var(--accent);
}

.trust-card.featured {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.06),
    rgba(94, 23, 235, 0.06)
  );
  border-color: var(--gold);
}

.trust-card.featured:hover {
  border-color: var(--gold);
}

.trust-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 3px rgba(94, 23, 235, 0.2));
}

.trust-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white-09);
}

.trust-card p {
  font-size: 14px;
  color: var(--white-07);
  line-height: 1.5;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--white-01);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 5px;
}

.trust-section .star {
  font-size: 24px;
  color: #ffd700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.trust-section .star.empty {
  color: var(--white-03);
  text-shadow: none;
}

.reviews-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reviews-text strong {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-text span {
  font-size: 14px;
  color: var(--white-07);
}

/* ===== MODAL ===== */
.trust-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trust-modal-overlay.show {
  display: flex;
  opacity: 1;
}

.trust-modal-content {
  background: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  padding: 30px;
  position: relative;
  animation: trustModalSlideIn 0.3s ease;
}

.trust-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white-08);
  font-size: 30px;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.trust-modal-close:hover {
  color: var(--primary);
}

.trust-modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.trust-modal-icon {
  font-size: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(94, 23, 235, 0.5));
}

.trust-modal-header h3 {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.trust-modal-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-08);
  text-align: center;
  margin: 0;
}

/* ===== SEÇÃO DE AVALIAÇÕES COM CAROUSEL ===== */

.reviews-section {
  padding: 100px 20px;
  position: relative;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(94, 23, 235, 0.05),
    transparent
  );
  overflow: hidden;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Carousel principal */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  gap: 30px;
}

/* ===== CARD DE AVALIAÇÃO OTIMIZADO ===== */
.review-card {
  min-width: calc((100% - 60px) / 3);
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-01);
  border-radius: 25px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

/* Header do card (foto + info) */
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* ===== AVATAR OTIMIZADO ===== */
.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.review-info {
  flex: 1;
}

.review-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white-09);
  margin-bottom: 5px;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 5px;
}

.reviews-section .star {
  font-size: 16px;
  color: var(--white-03);
  transition: all 0.2s ease;
}

.reviews-section .star.filled {
  color: #ffd700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
}

.review-date {
  font-size: 12px;
  color: var(--white-07);
  font-weight: 400;
}

/* ===== TEXTO DA AVALIAÇÃO OTIMIZADO ===== */
.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--white-08);
  font-style: italic;
  position: relative;
}

/* ===== CONTROLES OTIMIZADOS ===== */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.carousel-btn {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-01);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: var(--white-09);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(94, 23, 235, 0.3);
}

.carousel-btn:active {
  transform: scale(0.98);
}

/* ===== DOTS OTIMIZADOS ===== */
.carousel-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white-03);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(94, 23, 235, 0.5);
}

.dot:hover {
  background: var(--accent);
  transform: scale(1.05);
}

/* ===== SEÇÃO DE VÍDEOS DOS CLIENTES ===== */

.client-videos-section {
  padding: 100px 20px;
  position: relative;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(94, 23, 235, 0.05),
    transparent
  );
}

.videos-container {
  max-width: 1400px;
  margin: 0 auto;
}

.videos-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ===== CAROUSEL DE VÍDEOS ===== */

.videos-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 60px;
}

.videos-track {
  display: flex;
  gap: 15px;
  transition: transform 0.5s ease;
  padding: 0;
}

/* ===== STORY INDIVIDUAL ===== */
.video-story {
  flex: 0 0 170px;
  height: 300px;
}

.story-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 2px solid var(--white-01);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

/* ===== HOVER OTIMIZADO ===== */
.story-container:hover {
  border-color: var(--accent);
}

/* ===== VÍDEO ===== */
.story-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== OVERLAY OTIMIZADO ===== */
.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.video-story.playing .story-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  transition: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ===== INFO DO RESULTADO ===== */
.story-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  text-align: center;
  color: white;
}

.result-badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 8px rgba(94, 23, 235, 0.3);
}

.story-info p {
  font-size: 12px;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

/* ===== CONTROLES OTIMIZADOS ===== */
.videos-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.video-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-01);
  color: var(--white-09);
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ===== CTA ===== */
.videos-cta {
  text-align: center;
  margin-top: 60px;
}

.videos-cta p {
  font-size: 20px;
  color: var(--white-08);
  margin-bottom: 20px;
  font-weight: 300;
}

/* ===== CSS PARA O CONTADOR ONLINE ===== */

.online-counter {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 11px;
  color: #22c55e;
  font-weight: 600;
  backdrop-filter: blur(10px);
  margin-left: auto;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-online 2s infinite;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

@keyframes pulse-online {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

/* ===== CSS PARA BARRA DE NOTIFICAÇÃO ===== */

.purchase-notification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #159d47, #147d3a);
  color: rgb(255, 255, 255);
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.purchase-notification.show {
  transform: translateY(0);
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.notification-icon {
  font-size: 20px;
  animation: bounce 2s infinite;
}

.notification-text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  flex: 1;
  animation: subtle-bounce 2s infinite;
}

.notification-close {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: rgb(255, 255, 255);
  font-size: 20px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.buyer-name {
  color: #fafafa;
  font-weight: 700;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}

/* Links específicos */
.whatsapp-link {
  color: #25d366;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.whatsapp-link:hover {
  color: #128c7e;
  text-decoration: underline;
}

.address-indent {
  padding-left: 20px;
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */

.back-to-top-v1 {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 10px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top-v1.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-v1:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
}

.back-to-top-v1:active {
  transform: translateY(-2px);
}

/* ===== SEÇÃO FAQ ===== */

.faq-section {
  padding: 120px 20px 80px;
  position: relative;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(94, 23, 235, 0.03),
    transparent
  );
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ===== LISTA FAQ ===== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-01);
  border-radius: 15px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 30px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--white-09);
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question span:first-child {
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
  margin-left: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 30px 25px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--white-08);
}

/* ===== ÍCONES DE REDES SOCIAIS NO RODAPÉ ===== */

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.social-icon-link {
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.social-icon-img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: 8px;
}

/* ===== CHECKLIST HERO ===== */
.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  width: 100%;
  box-sizing: border-box;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--white-09);
}

.check-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* ===== ANIMAÇÕES ===== */

@keyframes subtleGradient {
  0% {
    background-position: 0% 50%;
    transform: translateY(0);
  }
  50% {
    background-position: 100% 50%;
    transform: translateY(-2px);
  }
  100% {
    background-position: 0% 50%;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

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

@keyframes scan {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(0.95);
  }
}

@keyframes trustModalSlideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
  }
  60% {
    transform: translateY(-2px);
  }
}

@keyframes subtle-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-2px);
  }
  60% {
    transform: translateY(-1px);
  }
}

/* ===== PÁGINAS INSTITUCIONAIS (CONTATO, POLÍTICAS, TERMOS) ===== */

/* Página de contato */
.contact-section {
  padding: 150px 20px 100px;
  position: relative;
  min-height: 100vh;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== HEADER DAS PÁGINAS ===== */
.contact-header,
.privacy-header,
.cookies-header,
.terms-header,
.responsibility-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-title {
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 20px;
  color: var(--white-07);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CONTEÚDO DAS PÁGINAS INSTITUCIONAIS ===== */
.privacy-policy-section,
.cookies-policy-section,
.terms-section,
.responsibility-terms-section {
  padding: 150px 20px 100px;
  position: relative;
  min-height: 100vh;
}

.privacy-container,
.cookies-container,
.terms-container,
.responsibility-container {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-content,
.cookies-content,
.terms-content,
.responsibility-content {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-01);
  border-radius: 25px;
  padding: 50px;
  margin-bottom: 40px;
}

.privacy-intro,
.cookies-intro,
.terms-intro,
.responsibility-intro {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--white-01);
}

.privacy-intro p,
.cookies-intro p,
.terms-intro p,
.responsibility-intro p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white-08);
  text-align: center;
}

/* ===== SEÇÕES DOS DOCUMENTOS ===== */
.privacy-section,
.cookies-section,
.terms-section-item,
.responsibility-section {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy-section:last-child,
.cookies-section:last-child,
.terms-section-item:last-child,
.responsibility-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-number {
  flex: 0 0 60px;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.section-content {
  flex: 1;
}

.section-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white-09);
}

.subsection {
  margin-bottom: 25px;
}

.subsection h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent);
}

.section-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-08);
  margin-bottom: 15px;
}

/* ===== LISTAS DAS PÁGINAS INSTITUCIONAIS ===== */
.policy-list,
.terms-list,
.responsibility-list,
.cookies-list {
  list-style: none;
  margin: 15px 0;
}

.policy-list li,
.terms-list li,
.responsibility-list li,
.cookies-list li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-08);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.policy-list li::before,
.terms-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.responsibility-list li::before {
  content: "⚠️";
  position: absolute;
  left: 0;
  font-size: 14px;
}

.cookies-list li::before {
  content: "🍪";
  position: absolute;
  left: 0;
  font-size: 14px;
}

/* ===== LISTA DE CONTATO ===== */
.contact-list {
  list-style: none;
  margin: 15px 0;
}

.contact-list li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-08);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.contact-list li::before {
  content: "📧";
  position: absolute;
  left: 0;
  font-size: 14px;
}

.contact-list li:nth-child(2)::before {
  content: "💬";
}

.contact-list li:nth-child(3)::before {
  content: "📍";
}

/* ===== DESTAQUES ===== */
.contact-highlight {
  color: var(--accent);
  font-weight: 600;
}

.contact-info {
  background: rgba(94, 23, 235, 0.05);
  border: 1px solid rgba(94, 23, 235, 0.2);
  border-radius: 15px;
  padding: 20px;
  margin-top: 15px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 15px;
}

/* ===== CTA DAS PÁGINAS ===== */
.privacy-cta,
.cookies-cta,
.terms-cta,
.responsibility-cta,
.contact-cta {
  text-align: center;
}

/* ===== PÁGINA DE CONTATO ESPECÍFICA ===== */
.contact-info-main {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-01);
  border-radius: 25px;
  padding: 50px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-description {
  color: var(--white-08);
  margin-bottom: 50px;
  line-height: 1.6;
  font-size: 18px;
}

/* ===== GRID DE MÉTODOS DE CONTATO ===== */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--white-01);
  border-radius: 20px;
  transition: all 0.3s ease;
  text-align: left;
}

.contact-item:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 26px;
  min-width: 40px;
  text-align: center;
  filter: drop-shadow(0 0 8px rgba(94, 23, 235, 0.3));
}

.contact-details {
  flex: 1;
}

.contact-details h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white-09);
}

/* ===== CARD WHATSAPP CLICÁVEL ===== */
.contact-whatsapp-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--white-01);
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-whatsapp-card:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

.contact-whatsapp-card .whatsapp-link {
  color: #25d366 !important;
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
}

.contact-whatsapp-card h3 {
  color: var(--white-09) !important;
}

.contact-whatsapp-card .contact-note {
  color: var(--white-07) !important;
}

/* ===== LINKS NORMAIS DOS OUTROS CARDS ===== */
.contact-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
  display: block;
  margin-bottom: 5px;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-note {
  display: block;
  font-size: 13px;
  color: var(--white-07);
  font-style: italic;
}

.address-info p {
  margin: 2px 0;
  color: var(--white-08);
  line-height: 1.4;
  font-size: 15px;
}

/* ===== HORÁRIO DE FUNCIONAMENTO ===== */
.business-hours {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--white-01);
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 60px;
}

.hours-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--white-01);
  border-radius: 15px;
  transition: all 0.2s ease;
}

.hours-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
}

.hours-item .day {
  font-weight: 600;
  color: var(--white-09);
  font-size: 15px;
}

.hours-item .time {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
}

.hours-note {
  text-align: center;
  color: var(--white-08);
  font-size: 15px;
  margin: 0;
  padding: 20px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 10px;
}

.hours-note strong {
  color: #25d366;
}

/* ===== LINKS DAS LOGOS CLICÁVEIS ===== */
.logo-corner a {
  display: block;
  transition: opacity 0.2s ease;
}

.logo-corner a:hover {
  opacity: 0.8;
}
