* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}




html {
  scroll-behavior: smooth;
}

body {
  background: #131313;
  color: #111;
  text-align: center; /* centraliza textos globalmente */
    color: #eee;
}


/* CONTAINER */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 8px 20px; /* diminui altura geral */
}


/* NAVBAR */
.navbar {
  background: #080808;
  
  position: sticky;
  top: 0;
  padding: 1px 0; /* menor ainda */
  z-index: 9999;
}



.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar span {
  color: #E3261C;
}

.btn-nav {
  background: #E3261C;
  color: white;
  padding: 6px 16px; /* menor */
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
}


/* HERO */
.hero {
  padding: 50px 0;
  background: #131313;
  
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center; /* centraliza horizontal */
  text-align: center;
    color: #dddddd;
}


.hero h1 {
  font-size: 28px;
    color: #dddddd;
}

.hero p {
  margin: 10px 0;
    color: #eee;
}

.hero-img img {
  width: 100%;
  border-radius: 10px;
}

/* BOTÃO */
.btn {
    display: inline-block;
  margin: 15px auto 0;
  background: linear-gradient(180deg, #FF3B2E, #C91F16);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 10px;
}

.btn.big {
  padding: 15px 35px;
}

/* GALLERY */
.gallery {
  padding: 40px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.grid img {
  width: 100%;
  border-radius: 10px;
}

/* BENEFITS */
.benefits {
  padding: 40px 0;
  color: #111;
}

.benefits h2 {
    padding-bottom: 22px;
    color: #eee;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 15px;

}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #E3261C;
    text-align: center;
}

/* PLANOS */
.plans {
  padding: 50px 0;
  text-align: center;

}

.plan-box {
  display: flex;
  flex-direction: column;
  gap: 20px;

}

.plan {
  background: white;
  padding: 20px;
  border-radius: 10px;
  
}

.plan.destaque {
  border: 2px solid #D4A017;
}

.price {
  font-size: 22px;
  color: #E3261C;
}

/* CTA */
.cta {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  color: white;
 background-attachment: fixed;
  background: url('img/iptv.jpg') center/cover no-repeat;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(227, 38, 28, 0.295));
}

.cta .container {
  position: relative;
  z-index: 2;
}




.payments span {
  margin: 0 6px;
  font-size: 14px;
}

.copy {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.7;
}




/* OFERTA */
.offer-box {
  background: linear-gradient(145deg, #fff, #f8f8f8);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  text-align: center;
  border-top: 4px solid #E3261C;
      color: #111;
}

.offer small {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

/* COMPARAÇÃO */
.comparison {
  margin: 20px 0;
}

.offer-list {
  list-style: none;
  padding-left: 0;
}

.comparison-title {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.platforms span {
  background: #eee;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

/* PREÇO */
.price-box {
  margin: 20px 0;
}

.now {
  font-size: 14px;
  color: #555;
}

.price {
  margin-top: 10px;
}

.from {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.to {
  font-size: 32px;
  color: #E3261C;
  font-weight: bold;
}

.month {
  font-size: 14px;
  color: #555;
}



.logo img {
  height: 65px; /* aumentamos aqui */
  object-fit: contain;
  
}


.carousel {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}


.carousel-track img {
  width: 100%;
  border-radius: 12px;
  flex-shrink: 0;
}


.faq {
  padding: 50px 20px;
  background: #131313;
  color: #eee;
}

.faq h2 {
  margin-bottom: 20px;
}

.faq-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: white;
  padding: 15px;
  border-radius: 10px;
  text-align: left;
}

.faq-item h3 {
  font-size: 14px;
  margin-bottom: 5px;
  color: #E3261C;
}

.faq-item p {
  font-size: 13px;
  color: #555;
}

.guarantee {
  margin-top: 25px;
  font-size: 13px;
  color: #777;
}


.notif {
  position: fixed;
  top: 90px; /* abaixo da navbar */
  left: 50%;
  transform: translateX(-50%) translateY(-20px);

  background: #F5F5F5;
  padding: 10px 18px;
  border-radius: 30px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  font-size: 13px;
  white-space: nowrap;
 border: 1px solid #eee;
  font-weight: 500;
  opacity: 0;
  transition: 0.4s;
  z-index: 999;
      color: #111;
}

.notif.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.notif strong {
  color: #FF3B2E; /* laranja/vermelho da sua paleta */
}




.footer {
  background: #080808;
  color: #333;
  padding: 25px 20px 10px;
}

/* CONTAINER DO TOPO */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* ESQUERDA (LOGO + SLOGAN) */
.footer-left {
  display: flex;
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-group img {
  height: 38px; /* tamanho ideal */
  object-fit: contain;
}

.slogan {
  font-size: 12px;
  color: #666;
}

/* CENTRO (PAGAMENTOS) */
.footer-center {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-center i {
  font-size: 26px;
  color: #555;
  transition: 0.3s;
}

.footer-center i:hover {
  color: #E3261C;
  transform: scale(1.15);
}

/* DIREITA (CONTATOS) */
.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-right a {
  font-size: 22px;
  color: #555;
  transition: 0.3s;
}

.footer-right a:hover {
  color: #E3261C;
  transform: scale(1.2);
}

/* PARTE DE BAIXO */
.footer-bottom {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #ccc;
  text-align: center;
  font-size: 12px;
  color: #777;
}

.footer-bottom strong {
  color: #E3261C;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    justify-content: center;
  }

  .logo-group img {
  height: 68px;
}
}






#loader {
  position: fixed;
  inset: 0; /* substitui width/height/top/left */

  background: url('img/load.png') center center no-repeat;
  background-size: cover;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  z-index: 99999;
}


/* FUNDO */
.loader-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* padrão */
}



/* OVERLAY ESCURO */
.loader-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

/* CENTRO */
.loader-center {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* LOGO */
.loader-logo {
  width: 110px;
  position: absolute;
  bottom: 50%;
  transform: translateY(40px);
  animation: logoUp 1.5s ease forwards;
}

/* BARRA */
.progress-bar {
  width: 260px;
  height: 10px; /* mais grossa */
  background: #222;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;

  box-shadow: inset 0 2px 6px rgba(0,0,0,0.6);
}

.progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #FF3B2E, #E3261C);
  border-radius: 20px;
  animation: loading 1.5s forwards;

  box-shadow: 0 0 10px rgba(255,59,46,0.7);
    background-size: 200% 100%;
  animation: loading 1.5s forwards, shine 1.5s linear infinite;
}


/* ANIMAÇÕES */
@keyframes loading {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes logoUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(20px);
    opacity: 1;
  }
 
}

@keyframes shine {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}

/* FOOTER */
.loader-footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.loader-footer img {
  width: 130px;
  margin-bottom: 5px;
}

.loader-footer p {
  font-size: 12px;
  color: #aaa;
}

.loader-footer strong {
  color: #ffffff;
}



.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }


section {
  scroll-margin-top: 70px;
}



.online-box {
  background: linear-gradient(180deg, #FF3B2E, #C91F16);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      color: #eee;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 55px;
  height: 55px;
  background: #25D366;
  color: white;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
