/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* PARALLAX STAR BACKGROUND */
#parallax-stars {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -4;
  background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
}
#stars, #stars2, #stars3 {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  animation: animStar 50s linear infinite;
}
#stars {
  width: 1px;
  height: 1px;
  box-shadow: 50px 100px #FFF, 200px 150px #FFF, 300px 250px #FFF, 400px 350px #FFF, 600px 450px #FFF, 700px 600px #FFF;
}
#stars2 {
  width: 2px;
  height: 2px;
  box-shadow: 100px 200px #FFF, 300px 400px #FFF, 500px 600px #FFF, 800px 700px #FFF, 900px 850px #FFF;
  animation-duration: 100s;
}
#stars3 {
  width: 3px;
  height: 3px;
  box-shadow: 150px 300px #FFF, 400px 500px #FFF, 650px 800px #FFF, 850px 900px #FFF;
  animation-duration: 150s;
}
@keyframes animStar {
  from { transform: translateY(0px); }
  to { transform: translateY(-2000px); }
}

/* Fonte e corpo */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #fff;
  overflow-x: hidden;
  /* background: linear-gradient(135deg, #6a3093, #a044ff);*/
  background-size: 200% 200%;
  animation: colorShift 30s linear infinite;
  position: relative;
}
@keyframes colorShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Partículas (opcional) */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

/* Background SVG animado */
.animated-svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  opacity: 0.5;
}

/* HEADER */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: #000;
z-index: 999;
box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.header-container {
max-width: 1200px;
margin: auto;
padding: 10px 20px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}

/* Logo */
.logo {
display: flex;
align-items: center;
}

.logo img {
width: 50px;
height: 50px;
object-fit: cover;
border-radius: 10px;
margin-right: 10px;
}

.logo h1 {
color: #fff;
font-size: 18px;
font-weight: 700;
}

/* Botão de menu hamburguer */
.menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
}

.menu-toggle span {
height: 3px;
width: 25px;
background: #fff;
margin: 4px 0;
border-radius: 2px;
}

/* Menu de navegação */
nav ul {
display: flex;
list-style: none;
padding-left: 0;
margin: 0;
gap: 15px;
}

nav ul li a.nav-btn {
background-color: #222;
color: #fff;
padding: 8px 16px;
border-radius: 20px;
text-decoration: none;
font-weight: 500;
transition: 0.3s ease;
display: inline-block;
}

nav ul li a.nav-btn:hover {
background-color: #ebac07;
color: #000;
}

/* Responsivo */
@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

nav {
width: 100%;
display: none;
}

nav.active {
display: block;
}

nav ul {
flex-direction: column;
background: #111;
padding: 10px 0;
text-align: center;
}

nav ul li {
margin: 10px 0;
}

.header-container {
flex-direction: column;
align-items: center;
}

.logo {
margin-bottom: 10px;
}
}

/* BOTÕES FLUTUANTES */
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.3s;
}
.whatsapp-fixed:hover {
  transform: scale(1.1);
}
.whatsapp-support-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #16a2f5;
  color: #fff;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.3s;
}
.whatsapp-support-left:hover {
  transform: scale(1.1);
}

/* HERO: VÍDEO DE FUNDO */
.hero-bg-video {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

.video-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}

.video-container video {
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-bg-video::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
z-index: 0;
}

.hero-content {
z-index: 1;
color: #fff;
padding: 0 20px;
max-width: 900px;
margin: auto;
}

.hero-content h2 {
font-size: clamp(28px, 6vw, 48px);
font-weight: bold;
margin-bottom: 20px;
}

.hero-subtitle {
font-size: clamp(16px, 4vw, 22px);
color: #ffc107;
margin-bottom: 30px;
line-height: 1.5;
word-break: break-word;
}

.btn-teste {
position: relative;
background: none;
color: #fff;
padding: 15px 35px;
text-decoration: none;
border: 2px solid #93161a;
border-radius: 30px;
font-size: 18px;
display: inline-block;
overflow: hidden;
transition: color 0.3s ease;
}

.btn-teste::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #93161a;
z-index: -1;
transform: scaleX(0);
transform-origin: right;
transition: transform 0.5s ease;
}

.btn-teste:hover::before {
transform: scaleX(1);
transform-origin: left;
}

.btn-teste:hover {
color: #fff0ff;
}

/* BENEFÍCIOS */
.beneficios {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.beneficios h2 {
  font-size: 32px;
  margin-bottom: 30px;
}
.beneficios ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.beneficios li {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px 30px;
  border-radius: 10px;
  transition: transform 0.5s ease;
  width: 300px;
  text-align: left;
  position: relative;
  perspective: 1000px;
}
.beneficios li:hover {
  transform: rotateY(6deg);
}

/* SERVIÇOS (CARROSSEL DE LOGOS) */
.servicos {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}
.servicos h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.servicos p {
  font-size: 18px;
  margin-bottom: 30px;
}
.carousel {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.slide-track {
  display: flex;
  animation: scroll 30s linear infinite;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.slide {
  width: 120px;
  margin-right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide img {
  width: 100%;
  max-width: 120px;
  transition: transform 0.3s;
}
.slide img:hover {
  transform: scale(1.2);
}
.slide-track:hover {
  animation-play-state: paused;
}

/* VÍDEO LOCAL */
.video-explicativo {
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.video-explicativo h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.video-container-local {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
}
.video-container-local video {
  width: 100%;
  border: 2px solid #ccc;
  border-radius: 6px;
}

/* INDICAÇÕES DE FILMES */
.indicacoes-filmes {
  padding: 40px 20px;
  background-color: #111;
  color: white;
  text-align: center;
}

.indicacoes-filmes h2 {
  font-size: 26px;
  color: white;
  margin-bottom: 10px;
}

.indicacoes-filmes p {
  color: white;
  margin-bottom: 30px;
  font-size: 16px;
}

.videos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.video-item {
  width: 100%;
  max-width: 320px;
  background: #1a1a1a;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.video-item video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.video-item h4 {
  margin-top: 10px;
  font-size: 16px;
  color: #ffc107;
  text-align: center;
}

@media (max-width: 768px) {
  .video-item {
    max-width: 100%;
  }
}

/* Card Animado */
main{
width: 100%;
display: flex;
align-items: center;
justify-content: space-evenly;
flex-wrap: wrap;
}

.div-align-info{
margin: 0.5em 0.5em;
display: flex;
flex-direction: column;
align-items:normal;
background: linear-gradient(0deg, rgb(17, 17, 17) 0%, rgb(32, 34, 37) 100%);
background-repeat: no-repeat;
width: 23rem;
height: 39rem;
border-radius: 14px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
padding: 2em 2em;
position: relative;
color: white;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
overflow: hidden;
}

.div-align-info::before{
content: "";
position: absolute;
width: 15rem;
height: 200%;
background: rgb(250, 4, 4);
box-shadow: rgb(117, 0, 0) 0px 1px 15px;
animation: borderFX 7s linear infinite;
}

@keyframes borderFX{
100%{
    transform: rotate(360deg);
}
}

.div-align-info::after{
content: "";
position: absolute;
background: linear-gradient(0deg, rgb(17, 17, 17) 0%, rgb(32, 34, 37) 100%);
inset: 3px;
border-radius: inherit;
}

.div-align-info h3{
font-size: 35px;
z-index: 3;
color: #ebac07;
text-align: center;
}

.div-align-info button{
width: 10rem;
height: 3.5rem;
border: none;
z-index: 3;
font-size: 17px;
border-radius: 10px;
color: white;
background-color: rgb(156, 28, 28);
cursor: pointer;
transition: 0.4s;
}

.div-align-info button:hover{
transform: scale(1.08);

}

.div-align-info button:active{
background-color: rgb(8, 0, 0);
}

.div-align-info p{
z-index: 3;
font-size: 15px;
font-weight: 100;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
text-align:left;
}

.center-text {
  text-align: center !important;
  width: 100%;
  display: block;
}

@media (max-width: 480px) {
.div-align-info {
    width: 16rem;
    height: 39rem;
    padding: 1em;
}

.div-align-info h3 {
    font-size: 22px;
}

.div-align-info button {
    width: 7rem;
    height: 2.8rem;
    font-size: 14px;
}
}

/* PROMOÇÕES / NOSSOS PLANOS */
.promo-card {
display: flex;
gap: 40px;
align-items: center;
text-align: left;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 10px;
padding: 20px;
animation: subtleGlow 3s ease-in-out infinite alternate;
flex-wrap: wrap;
}

.promo-card-image {
flex: 0 0 120px;
}

.promo-card-image img {
width: 295px;
height: auto;
border-radius: 10px;
box-shadow: 0 2px 6px rgb(247, 242, 242);
}

.promo-card-texto {
flex: 1;
}

.promo-card-texto h3 {
font-size: 40px;
margin: 0 0 10px;
color:#ebac07
}

.promo-card-texto p {
font-size: 16px;
color: #f0f0f0;
margin: 5px 0;
}

.promo-plans {
display: flex;
flex-direction: column;
gap: 20px;
width: 100%;
}
.promo-card {
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
border-radius: 10px;
padding: 20px;
position: relative;
animation: subtleGlow 3s ease-in-out infinite alternate;
}
@keyframes subtleGlow {
0% { box-shadow: 0 0 4px rgba(255,255,255,0.2); }
100% { box-shadow: 0 0 10px rgba(255,255,255,0.2); }
}

/* CONTATO / FORMULÁRIO */
.contato-suporte {
background-color: #10161c;
color: #fff;
padding: 60px 20px;
text-align: center;
}

.contato-container {
max-width: 800px;
margin: 0 auto;
}

.contato-container h2 {
font-size: 32px;
margin-bottom: 10px;
}

.contato-container p {
font-size: 18px;
color: #ccc;
margin-bottom: 30px;
}

.contato-formulario {
display: flex;
flex-direction: column;
gap: 20px;
text-align: left;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-weight: 600;
margin-bottom: 7px;
margin-top: 20px;
color: #ffd700;
text-align: left;
}

.form-group input,
.form-group textarea {
padding: 12px;
border-radius: 6px;
border: 1px solid #ccc;
background-color: #2c2a2a3b;
color: #cec6c6;
font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
border-color: #93161a;
outline: none;
}

/* DÚVIDAS FREQUENTES */
.section2 {
background-color: rgba(0, 0, 0, 0.6);
padding: 60px 20px;
color: #fff;
text-align: left;
max-width: 1000px;
margin: 0 auto;
border-radius: 12px;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.container-2 h1 {
font-size: 32px;
margin-bottom: 20px;
text-align: center;
}

.container-2 p {
font-size: 18px;
color: #ccc;
margin-bottom: 20px;
}

.container-2 h3 {
font-size: 26px;
margin: 40px 0 20px;
color: #ebac07;
}

details {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 8px;
padding: 15px 20px;
margin-bottom: 15px;
transition: all 0.3s ease;
cursor: pointer;
}

details[open] {
background-color: rgba(255, 255, 255, 0.08);
}

details summary {
font-size: 20px;
font-weight: bold;
color: #ebac07;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
}

details summary::after {
content: "+";
font-size: 24px;
transition: transform 0.3s;
}

details[open] summary::after {
content: "−";
}

details p {
font-size: 16px;
margin-top: 10px;
line-height: 1.5;
color: #e0e0e0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
.container-2 h1 {
font-size: 24px;
}

.container-2 h3 {
font-size: 22px;
}

details summary {
font-size: 18px;
}

details p {
font-size: 15px;
}
}

/* RODAPÉ */
footer {
color: #fff;
padding: 2px 2px;
width: 100%;
box-sizing: border-box;
}

.footer-container {
display: flex;
flex-direction: column;
align-items: center;
}

.footer-links {
margin-top: 10px;
}

.footer-links a {
margin: 0 10px;
}

.social-icon {
width: 50px;
height: 50px;
filter: brightness(1.2);
transition: transform 0.3s ease;
}

.social-icon:hover {
transform: scale(1.15);
}

/* SCROLL SUAVE */
html {
  scroll-behavior: smooth;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  header { flex-direction: column; align-items: flex-start; }
  nav ul { margin-top: 10px; }
  .hero-content h2 { font-size: 32px; }
  .hero-content p { font-size: 18px; }
  .slide { width: 80px; margin-right: 20px; }
  .slide img { max-width: 80px; }
  .promocoes-container { flex-direction: column; }
  .promo-image, .promo-plans { flex: 1 1 100%; }
  .columns-header { display: none; }
  .mobile-header { 
    display: block; 
    font-size: 32px; 
    color: #fff; 
    text-align: center; 
    margin-bottom: 20px; 
    width: 100%; 
  }
}

/* LINHA DO TEMPO */
#progress-bar-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 10px;
  background: #93161a;
  width: 0%;
  z-index: 9999;
  transition: width 0.40s ease;
}


