/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Orbitron:wght@700&display=swap');

:root {
  --primary-color: #d4af37; /* Dourado */
  --secondary-color: #ffffff; /* Branco */
  --accent-color: #00e5ff; /* Ciano neon */
  --text-color: #e0e0e0; 
  --dark-bg: #0f1020; 
  --card-bg: rgba(22, 24, 48, 0.7); 
  
  --font-family: 'Montserrat', sans-serif;
  --font-display: 'Orbitron', sans-serif;
  --box-shadow: 0 5px 25px rgba(212, 175, 55, 0.15);
  --box-shadow-hover: 0 8px 35px rgba(212, 175, 55, 0.25);
  --border-radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color); 
  background-color: var(--dark-bg); 
  font-size: 16px;
  overflow-x: hidden;
}

/* Barra de Promoção */
.promo-bar {
  background: var(--primary-color);
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  overflow: hidden;
  white-space: nowrap;
}
.promo-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
  text-transform: uppercase;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* --- MAIN NAVIGATION --- */
.main-nav {
  position: fixed;
  top: 35px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 5%;
  background-color: transparent;
  transition: background-color 0.4s ease-out, box-shadow 0.4s ease-out, top 0.4s ease-out;
}
.main-nav.scrolled {
  background-color: var(--dark-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.2rem;
}
.nav-logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  transition: all 0.3s ease;
}
.nav-links a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--primary-color); }
.nav-cta {
  padding: 8px 20px !important;
  font-size: 0.9rem !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4) !important;
}
.menu-toggle { display: none; font-size: 1.5rem; color: var(--secondary-color); cursor: pointer; }
.nav-link-button {
  background: none; border: none; padding: 0; margin: 0;
  font-family: inherit; font-size: 0.95rem; font-weight: 600;
  color: var(--secondary-color); cursor: pointer; transition: color 0.3s ease;
}
.nav-link-button:hover { color: var(--primary-color); }

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.video-background iframe {
  width: 100vw; 
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 16, 32, 0.7);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 20px;
}
.logo-vision {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--secondary-color);
  text-shadow: 0 0 10px var(--primary-color), 0 0 20px rgba(212, 175, 55, 0.5);
  margin-bottom: 1rem;
}
.welcome-message {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #ccc;
  max-width: 650px;
  margin: 0 auto 1.5rem auto;
}
.hero-buttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.trial-note {
  font-size: 0.9rem;
  color: #ccc;
  font-style: italic;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: var(--primary-color);
  color: #000;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5), inset 0 0 8px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  line-height: 1;
}
.pricing-card .cta-button { width: 100%; }
.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
  background: #ffdf70;
}

/* Content Sections */
.content-section {
  padding: 80px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #aab;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

/* VÍDEO PROMOCIONAL */
.promo-video-section {
  padding-top: 70px;
  padding-bottom: 70px;
}
.promo-video-container {
  max-width: 1100px;
  margin: 0 auto;
}
.video-embed {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.35);
  margin: 24px auto 0 auto;
}
.promo-video-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* DESKTOP */
@media (min-width: 1025px) {
  .promo-video-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .promo-video-container {
    width: 100%;
    padding: 0 24px;
  }
  .promo-video-container .video-embed {
    max-width: 900px;
    max-height: 80vh;
    margin: 0 auto;
  }
  .promo-video-container .video-embed > div {
    padding-top: 56.25% !important;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .promo-video-section { padding: 50px 0; }
  .video-embed {
    border-radius: 0;
    margin: 16px 0 0 0;
    box-shadow: none;
  }
  .promo-video-container h2 {
    padding: 0 18px;
  }
}

/* Grids & Cards */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
  text-align: center;
}
.advantage-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}
.advantage-icon .fas, .advantage-icon .fab {
  background: linear-gradient(145deg, var(--primary-color), #ffdf70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.advantage-card h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.device-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  justify-items: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}
.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  color: var(--text-color);
  transition: transform 0.3s ease;
}
.device-item:hover { transform: scale(1.1); }
.device-item i {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.device-item span {
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--secondary-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.pricing-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  box-shadow: var(--box-shadow-hover);
}
.popular-badge, .discount-badge {
  position: absolute;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem; 
  font-weight: 700;
  text-align: center;
  display: inline-block;
}
.popular-badge {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
}
.discount-badge {
  background-color: var(--accent-color);
  color: #000;
  top: 15px;
  right: 15px;
  font-weight: 600;
}
.pricing-card.popular .discount-badge {
  top: -15px;
  right: -15px;
  transform: rotate(15deg);
}
.pricing-card ul {
  text-align: left;
  margin: 1.5rem 0;
  flex-grow: 1;
}
.pricing-card ul li { margin-bottom: 0.7rem; }
.pricing-card ul li i { color: var(--primary-color); margin-right: 8px; }

.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  min-height: 70px;
  text-align: center;
  width: 100%;
}
.price-label {
  font-size: 1rem;
  color: #aaa;
  font-weight: 400;
  margin-bottom: -5px;
  text-align: center;
  width: 100%;
}
.original-price { text-decoration: line-through; }
.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0;
  text-align: center;
  width: 100%;
}
.duration { text-align:center; width:100%; }
.trial-note-small {
  font-size: 0.85rem;
  color: #ccc;
  font-style: italic;
  margin: 1rem 0;
  text-align: center;
  width: 100%;
}

/* Testimonials Slider */
.testimonial-slider-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 20px;
  overflow: hidden;
  position: relative;
}
.testimonial-slider {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 30px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}
.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  object-fit: cover;
}
.testimonial-quote {
  font-style: italic;
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Footer */
footer {
  background-color: #0a0b18;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo { width: 100px; height: 100px; margin-bottom: 1rem; }
.footer-info { color: #aaa; margin: 0.5rem 0; }
.footer-payment-methods p { margin: 1.5rem 0 10px 0; font-size: 0.9rem; }

/* Ícones de pagamento */
.payment-icons {
  display: flex;
  gap: 15px;
  font-size: 2rem;
}
@media (max-width: 768px) { .payment-icons { justify-content: center; } }

.footer-legal-section { width: 100%; max-width: 600px; margin: 1.5rem 0; }
.footer-details {
  background-color: rgba(255,255,255,0.05);
  border-radius: var(--border-radius);
  margin-bottom: 10px;
}
.footer-details summary {
  padding: 12px 15px;
  cursor: pointer;
  font-weight: 600;
}
.details-content {
  padding: 0 15px 15px 15px;
  text-align: left;
  font-size: 0.8rem;
  color: #999;
}

/* WhatsApp Floating */
.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.whatsapp-text {
  background-color: var(--dark-bg);
  color: var(--secondary-color);
  padding: 8px 15px;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  border: 1px solid var(--primary-color);
}
.whatsapp-fixed {
  background: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-fixed:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}
.whatsapp-fixed i { color: #000; font-size: 2.2rem; }

/* Image Slider Section */
#grid-section { overflow: hidden; }
.image-slider-container {
  cursor: grab;
  overflow: hidden;
  position: relative;
  user-select: none;
  width: 100%;
}
.image-slider-container.active { cursor: grabbing; }
.slider-track { display: flex; gap: 20px; pointer-events: none; }
.slider-track.scrolling { animation: scrollSlider 40s linear infinite; }
@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(var(--scroll-width)); }
}
.image-slide { min-width: 200px; max-width: 280px; flex-shrink: 0; }
.image-slide img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-slide img:hover,
.image-slide img:active {
  transform: scale(1.05);
  box-shadow: 0 10px 30px -5px rgba(212, 175, 55, 0.3);
}

/* Social Proof Popups */
.social-proof-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
.social-proof-popup {
  background-color: var(--card-bg);
  color: var(--text-color);
  padding: 15px 20px;
  border-radius: var(--border-radius);
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  animation: slideInAndOut 5s ease-in-out forwards;
  opacity: 0;
  font-size: 0.9rem;
}
.social-proof-popup strong { color: var(--secondary-color); }
@keyframes slideInAndOut {
  0% { transform: translateX(-100%); opacity: 0; }
  15% { transform: translateX(0); opacity: 1; }
  85% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(-100%); opacity: 0; }
}

/* Botões Customizados para evitar override do JS */
.client-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-color);
  color: #000;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  line-height: 1;
}
.client-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
  background: #ffdf70;
}
.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-color);
  color: #000;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5), inset 0 0 8px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  line-height: 1;
}
.download-button img {
   width: 24px;
   height: 24px;
   border-radius: 50%;
}
.download-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
  background: #ffdf70;
}

/* ==== NOVA SEÇÃO FUTEBOL (Estilos Atualizados) ==== */
#futebol-section {
  padding-left: 0; /* Remove padding lateral da section */
  padding-right: 0; /* Remove padding lateral da section */
}

.futebol-box {
  position: relative;
  background-image: url('https://i.ibb.co/zVwySRJZ/grama-futebol.png');
  background-size: cover;
  background-position: center;
  /* Remove border-radius para preencher a largura */
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  box-shadow: var(--box-shadow-hover);
  /* Padding foi movido para o .futebol-content.container */
  text-align: center;
  overflow: hidden; /* Para o overlay */
}

.futebol-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 16, 32, 0.85); /* Overlay escuro (var(--dark-bg)) */
  z-index: 1;
}

/* O .container também é .futebol-content */
.futebol-content.container {
  position: relative;
  z-index: 2;
  max-width: 1100px; /* Alinha com a seção de vídeo */
  margin: 0 auto; /* Centraliza */
  padding: 50px 20px; /* Padding vertical + padding lateral de segurança */
}

.futebol-content h2 {
  /* Estilos já herdados de .content-section h2 */
  margin-bottom: 1rem;
}

.futebol-subtitle {
  color: var(--secondary-color); /* Branco */
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Ajuste para o ícone no .download-button */
.download-button .fas {
  font-size: 1.2rem;
  line-height: 1;
}
/* ==== FIM DA NOVA SEÇÃO ==== */


/* Responsivo */
@media (max-width: 768px) {
  .main-nav {
    top: 35px;
    z-index: 1002;
    background-color: var(--dark-bg);
  }
  .main-nav.scrolled {
    top: 35px;
    background-color: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }
  .whatsapp-container { right: 10px; align-items: flex-end; gap: 8px; }
  .whatsapp-text { text-align: right; max-width: 200px; }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    display: none;
    transition: all 0.3s ease;
  }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  
  .device-icons-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .slider-track { gap: 10px; }
  .image-slide img { max-height: 160px; }

  .social-proof-container { left: 10px; bottom: 10px; width: calc(100% - 20px); }
  .social-proof-popup { width: 100%; }

  /* Ajuste responsivo para a seção de futebol */
  .futebol-content.container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .futebol-content h2 {
    font-size: 1.8rem; /* Um pouco menor no mobile */
  }
}

@media (max-width: 600px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .operator-buttons { grid-template-columns: 1fr; }
  .device-item i { font-size: 3rem; }
  .device-item span { font-size: 0.9rem; }
}
