/* PALETA VIP ATUALIZADA */
:root {
  --rosa-vip: #ff2d6b;
  --azul-vip: #00a8ff;
  --laranja-vip: #ff7a00;
  --vermelho-vip: #ff1a1a;
  --preto-vip: #0a0a0a;
  --cinza-escuro: #1a1a1a;
  --branco: #ffffff;
  --gradiente: linear-gradient(90deg, var(--rosa-vip), var(--laranja-vip));
  --gradiente-azul: linear-gradient(90deg, var(--azul-vip), #00e0ff);
}

/* TIPOGRAFIA MODERNA */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
.logo,
.btn {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.5px;
}

body {
  background-color: var(--branco);
  color: var(--branco);
  line-height: 1.7;
  padding-bottom: 70px;
}

/* HEADER ATUALIZADO */
header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--rosa-vip);
}

.logo {
  margin: -40px auto 0 auto;
  width: 200px;
  height: 60px;
}

.logo img {
  width: 100%;
}

nav a {
  color: var(--branco);
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 15px;
}

nav a:hover {
  color: var(--azul-vip);
}

.btn-nav {
  background: var(--gradiente);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 15px;
}

/* HERO COM BG RADIAL */
.hero {
  text-align: center;
  padding: 50px 5%;
  position: relative;
  overflow: hidden;
  color: var(--preto-vip);
}

.hero-content {
  position: relative;
  margin-top: 4rem;
  font-size: 16px;
}

.hero-content h1 {
  font-size: 3.4rem;
  margin-bottom: 25px;
  background: var(--gradiente);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content .highlight {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: var(--preto-vip);
  font-weight: 500;
}

.hero-content ul.features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 20px auto 30px auto;
  max-width: 700px;
  color: var(--preto-vip);
  list-style: none;
}

.hero-content ul.features li {
  display: flex;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: left;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 18px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(255, 45, 107, 0.1);
}

.hero-content ul.features .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-content .cta {
  font-size: 1.1rem;
  margin-bottom: 35px;
  font-weight: 500;
  color: var(--preto-vip);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn-hero.blue {
  background: var(--gradiente-azul);
  box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: var(--preto-vip);
  font-weight: 600;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.price .old-price {
  font-size: 1.2rem;
  color: var(--preto-vip);
  text-decoration: line-through;
}

.price .new-price {
  font-size: 1.8rem;
  color: var(--rosa-vip);
  font-weight: bold;
}

.btn-hero {
  display: inline-block;
  background: rgba(252, 19, 89, 1);
  color: white;
  padding: 16px 45px;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  margin: 10px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 45, 107, 0.3);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 45, 107, 0.4);
}

.trust-section {
  padding: 50px 5%;
  text-align: center;
  border-radius: 12px;
  margin-top: 30px;
}
/* BENEFÍCIOS COM NOVO DESIGN */
.benefits {
  padding: 80px 5%;
  text-align: center;
  background: var(--cinza-escuro);
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 122, 0, 0.05), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(0, 168, 255, 0.05), transparent 30%);
}

.benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--azul-vip);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 7rem;
}

.benefit-card {
  background: rgba(30, 30, 30, 0.6);
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--rosa-vip);
  box-shadow: 0 10px 25px rgba(255, 45, 107, 0.1);
}

.benefit-icon {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: var(--laranja-vip);
}

.benefit-card h3 {
  color: var(--rosa-vip);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* SEÇÃO ATRIZES ATUALIZADA */
.models {
  padding: 80px 5%;
  background: var(--preto-vip);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23ff2d6b" opacity="0.03" width="50" height="50"/><rect fill="%2300a8ff" opacity="0.03" x="50" y="50" width="50" height="50"/></svg>');
  background-size: 15px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.models h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--laranja-vip);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.model-card {
  background: var(--cinza-escuro);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 380px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.model-card:hover {
  transform: scale(1.03);
}

.skeleton {
  width: 100%;
  height: 100%;
  background: var(--cinza-claro);
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: loading 1.5s infinite;
}

.skeleton img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.model-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  z-index: 6;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.model-info h3 {
  color: var(--branco);
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.model-info p {
  color: var(--laranja-vip);
  font-weight: bold;
  font-size: 1.1rem;
}

.media-count {
  text-align: center;
  margin-top: 50px;
  font-size: 1.6rem;
}

.media-count span {
  color: var(--rosa-vip);
  font-weight: bold;
}

/* SEÇÃO PAGAMENTO */
.payment {
  padding: 80px 5%;
  background: var(--cinza-escuro);
  text-align: center;
  border-radius: 3rem;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 168, 255, 0.05), transparent 40%);
}

.payment h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--laranja-vip);
}

.payment p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 50px;
}

.payment-steps {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.step {
  display: flex;
  margin-bottom: 35px;
  align-items: center;
  background: rgba(30, 30, 30, 0.6);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.step:hover {
  border-color: var(--azul-vip);
  transform: translateX(5px);
}

.step-number {
  background: var(--gradiente);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(255, 45, 107, 0.3);
}

.step-content h3 {
  color: var(--rosa-vip);
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1rem;
}

/* CTA FINAL */
.final-cta {
  padding: 100px 5%;
  text-align: center;
  color: var(--preto-vip);
}

.final-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  background: var(--gradiente);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--preto-vip);
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 18px 45px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-3px);
}

.btn-preview {
  background: rgba(255, 255, 255, 0.1);
  color: var(--azul-vip);
  border: 1px solid var(--azul-vip);
  box-shadow: 0 5px 15px rgba(0, 168, 255, 0.1);
}

.btn-preview:hover {
  background: rgba(0, 168, 255, 0.1);
}

.btn-join {
  background: var(--gradiente);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 45, 107, 0.3);
}

.btn-join:hover {
  background: linear-gradient(90deg, var(--rosa-vip), #ff5e8a);
}

/* STICKY BAR (MANTIDO) */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradiente);
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -5px 25px rgba(255, 45, 107, 0.3);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.countdown {
  font-size: 1.2rem;
  font-weight: bold;
}

.sticky-btn {
  background: var(--preto-vip);
  color: white;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sticky-btn:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.8);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.4rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .sticky-bar {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }
  /* 
        .logo {
          display: none;
        } */

  header {
    display: flex;
    align-items: center;
    justify-items: center;
  }

  nav {
    font-size: 10px;
  }

  nav .btn-nav {
    padding: 5px 10px;
    font-size: 10px;
  }
}
/* ...existing code... */
.video-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 30px auto;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .video-container {
    max-width: 100vw;
    border-radius: 8px;
  }
  .video-container video {
    border-radius: 8px;
  }
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  font-weight: bold;
  border: #00e0ff 2px solid;
}
