/* HERO */
.hero {
  background-color: var(--white);
  padding: 5rem 0;
  overflow: hidden;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.hero-content { flex: 1; }
.hero-content h1 {
  font-size: 3.5rem;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.hero-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  position: relative;
}

/* TV Mockup */
.hero-image { flex: 1; display: flex; justify-content: flex-end; }
.tv-mockup { width: 100%; max-width: 500px; }
.tv-screen {
  background: #111;
  border: 12px solid #222;
  border-radius: 12px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 20px 40px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #1E3A8A 0%, #0B2436 100%);
  position: relative;
}
.tv-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}
.tv-stand {
  width: 120px;
  height: 10px;
  background: #222;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  position: relative;
}
.tv-stand::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 10px;
  background: #111;
  border-radius: 4px;
}

.unitv-logo-large {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}
.play-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

/* PLANOS */
.planos { padding: 5rem 0; }
.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}
.plano-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plano-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.plano-card.highlighted {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}
.plano-card.highlighted:hover { transform: scale(1.05) translateY(-10px); }
.plano-header h3 {
  font-size: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.plano-header .dias {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.plano-header .dias span { font-size: 2.5rem; font-weight: 800; }

.gift-card {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gift-card:hover { transform: scale(1.05) rotate(2deg); }
.gift-card-inner {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E3A8A 100%);
  border-radius: 12px;
  aspect-ratio: 1.6/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.gift-card-inner::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}
.gift-card:hover .gift-card-inner::after { left: 150%; }

.unitv-logo-small {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}
.play-icon-small {
  width: 36px; height: 36px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}

.plano-price {
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.plano-price .currency { font-size: 1.25rem; font-weight: 600; margin-top: 0.5rem; margin-right: 0.25rem; }
.plano-price .amount { font-size: 3rem; font-weight: 800; line-height: 1; }
.plano-price .cents { font-size: 1.25rem; font-weight: 600; margin-top: 0.5rem; }

.btn-comprar {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 1rem;
}
.btn-comprar:hover { background-color: var(--secondary-hover); }

.link-detalhes {
  font-size: 0.875rem;
  color: var(--text-light);
  text-decoration: underline;
  transition: var(--transition);
}
.link-detalhes:hover { color: var(--primary); }

/* FEATURES */
.features { padding: 5rem 0; background-color: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
}
.feature-item h4 { font-size: 1.125rem; color: var(--primary); margin-bottom: 0.75rem; }
.feature-item p { font-size: 0.875rem; color: var(--text-light); }

/* SUPPORT CTA */
.support-cta { padding: 4rem 0; }
.support-container {
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}
.support-text { display: flex; align-items: center; gap: 1.5rem; }
.support-text h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.support-text p { opacity: 0.8; }
.btn-support {
  background-color: var(--white);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
}
.btn-support:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* RESPONSIVIDADE MOBILE - HOME */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    margin: 0 auto 2rem;
  }
  .tv-mockup {
    margin: 0 auto;
  }
  .planos-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }
  .support-text {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .unitv-logo-large {
    font-size: 1.8rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}
