:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #f59e0b;
  --dark-color: #1f2937;
  --light-color: #f8fafc;
  --header-height: 70px;
}

body {
  background-color: var(--light-color);
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: var(--primary-color);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: var(--header-height);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 40px;
  width: auto;
}

.navbar {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-list a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s;
}

.nav-list a:hover::after {
  width: 100%;
}

.highlight span {
  background: var(--accent-color);
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  transition: transform 1s;
  color: white;
  font-weight: 500;
}

.highlight span:hover {
  transform: translateY(-2px);
  cursor: pointer;
}

.hero {
  margin-top: var(--header-height);
  position: relative;
}

.slider-container {
  width: 100%;
  height: calc(100vh - var(--header-height));
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    pointer-events: none;
  }

.slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-button-header {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-header:hover {
  transform: translateY(-3px);
}

.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.dots div {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dots div.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

.planos {
  padding: 4rem 0;
}

.titulo-plano {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-color);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.plano-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  margin: 0.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  min-height: 450px;
}

.plano-card:hover {
  transform: translateY(-10px);
}

.plano-card h3 {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.preco {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 1rem 0;
}

.beneficios li {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0 1rem;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
  margin-top: auto;
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.cta-button:hover {
  transform: translateY(-3px);
}

.filtro-planos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.filtro-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  flex: 0 1 200px;
  margin: 0.5rem;
}

.filtro-btn.active {
  background: var(--primary-color);
  color: white;
}

.filtro-btn:hover {
  transform: translateY(-2px);
}

.planos-grid {
  display: none;
}

.planos-grid.show {
  display: grid;
}

.promo-telefone {
  padding: 2rem 0;
  margin-top: -50px;
}

.promo-telefone .container {
  max-width: 800px;
  margin: 0 auto;
}

.promo-card {
  background: var(--primary-color);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.promo-content {
  text-align: center;
  color: white;
}

.promo-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.preco-destaque {
  font-size: 2.5rem;
  margin: 1.5rem 0;
}

.streaming {
    padding: 20px 0px;
    background: #f9f9f9;
    margin-top: -30px;
  }
  
  .streaming h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-color);
    font-weight: 600;
  }
  
  .stream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
  }
  
  .stream-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 320px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
  }
  
  .stream-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }
  
  .stream-card img {
    max-width: 130px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .stream-card h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .stream-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .stream-card a {
    background-color: var(--dark-color);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    max-width: 180px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: auto;
    text-decoration: none;
  }
  
  .stream-card a:hover {
    background-color: #0056b3;
    transform: scale(1.05);
  }
  

.sobre {
  padding: 4rem 0;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.sobre .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.sobre-content {
  flex: 1;
}

.sobre-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.sobre-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.destaques {
  list-style: none;
}

.destaques li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.destaques i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.sobre-image {
  flex: 1;
  text-align: center;
}

.sobre-image img {
  max-width: 100%;
}

.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent-color);
}

.footer-col ul li i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float i {
  color: white;
  font-size: 2rem;
}


@media (max-width: 768px) {
  .streaming h2 {
      font-size: 2.0rem;
  }

  .stream-card {
    height: auto;
  }

  .stream-card img {
    max-width: 100px;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-list {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--primary-color);
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s;
    gap: 1.5rem;
  }

  .nav-list.active {
    left: 0;
  }

  .slider-container {
    display: none;
  }

  .dots {
    bottom: 20px;
  }

  .planos-grid {
    grid-template-columns: 1fr;
  }

  .plano-card {
    min-height: auto;
    margin: 0.5rem 0;
  }

  .filtro-btn {
    flex: 0 1 100px;
    padding: 0.6rem 1rem;
  }

  .promo-card {
    padding: 1.5rem;
  }

  .streaming-grid {
    grid-template-columns: 1fr;
  }

  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre .container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {

  .titulo-plano {
    font-size: 2rem;
  }

  .preco {
    font-size: 1.75rem;
  }

  .beneficios li {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
  }

  .promo-content h2 {
    font-size: 1.8rem;
  }

  .preco-destaque {
    font-size: 2rem;
  }
}
