@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('./base/footer.css');
@import url('./base/header.css');

:root { 
    --cor-primaria: #0080AC;
    --cor-secundaria: #FF9900;
    --cor-tercearia: #005C7E;
    --cor-quaternaria: #d62444;
    --cor-hover: #3F4E4F;
    --cor-branco: #ffffff;
    --cor-preto: #000000;

    --fonte-primaria: "Inter", sans-serif;
}


body {
    background-color: var(--cor-tercearia);
    padding-top: 7rem;
}

footer {
  padding-bottom: 3rem;
}

.negrito {
    font-weight: 700;
}

.hero {
  position: relative;
  width: 100%;
}


.hero-text {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  color: var(--cor-branco);
  max-width: 45%;
}

.hero-text h2 {
  font-size: 2.3rem;
  font-weight: bold;
}

.hero-text p {
  font-size: 1.25rem;
  margin-top: 1rem;
}

.botao-hero {
  background-color: var(--cor-tercearia);
  border-radius: 75px;
  color: var(--cor-secundaria);
  font-size: 1.4rem;
  font-family: var(--fonte-primaria);
  font-weight: 700;
  width: 13rem;
  transition: 0.2s ease;
}

.botao-hero:hover {
  background-color: var(--cor-secundaria);
  color: var(--cor-primaria);
  cursor: pointer;
  transform: scale(1.15);
}

.fundo-preto {
  position: relative;
}

.fundo-preto::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cor-preto);
  opacity: 0.7;
  pointer-events: none;
}


/* Remove as setas de incremento e decremento no Chrome, Edge e Safari */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.secao-promocional {
  display: flex;
  justify-content: center;
}

.texto-promocional {
  /* background-color: var(--cor-secundaria); */
  border-radius: 12px;
  width: 50vw;
  margin: 2rem;
}

.texto-promocional p {
  margin-bottom: 0.8rem;
  color: var(--cor-branco);
}

.subtitulo {
  font-size: 2.5rem;
  color: var(--cor-branco);
}

#planos {
  padding: 3rem 0;
  background-color: transparent;
  background-image: linear-gradient(100deg, var(--cor-primaria) 0%, var(--cor-secundaria) 90%);
}

.destaque {
  position: relative;
}

.card {
  margin-top: 1rem;
}

.sombra {
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.8);
}

.faixa {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--cor-quaternaria);
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 10;
  border-radius: 16px;
  white-space: nowrap;
}

.sobrepor-plano {
  background: var(--cor-secundaria);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  margin-bottom: 1rem;
}

.sobrepor-plano h3 {
  font-size: 2.75rem;
  font-weight: 700;
  color: white;
  display: inline-block;
  padding: 1rem;
}

.canais {
  font-weight: 700;
}

.preco {
  font-weight: 700;
}

.botao-contratar {
  background-color: var(--cor-primaria);
  border-radius: 75px;
  color: var(--cor-secundaria);
  font-family: var(--fonte-primaria);
  font-weight: 700;
  width: 70%;
  margin-bottom: 2rem;
  transition: 0.2s ease;
}

.botao-contratar:hover {
  background-color: var(--cor-secundaria);
  color: var(--cor-primaria);
  cursor: pointer;
  transform: scale(1.15);
}

.icon {
  width: 18.5%;
}

.modal-filmes {
  cursor: pointer;
  font-weight: 500;
  text-decoration-line: underline;
}

.modal-filmes:hover {
  color: var(--cor-secundaria);
}

.rodape-fixo {
  padding: 1rem 0;
}

#contrate {
  text-decoration: none;
  color: var(--cor-branco);
  transition: 0.2s ease;
}

#contrate:hover {
  color: var(--cor-secundaria);
  transform: scale(1.15);
}

@media (max-width: 992px) {
    
  .hero-text {
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translateY(-50%);
    color: var(--cor-branco);
    max-width: 45%;
  }
  
  .hero-text h2 {
    font-size: 1.49rem;
    font-weight: bold;
  }
  
  .hero-text p {
    font-size: 1.12rem;
    margin-top: 1rem;
  }
  
  .botao-hero {
    font-size: 1.125rem;
    font-weight: 700;
    width: 50%;
    transition: 0.2s ease;
  }
}

@media (max-width: 768px) {

  .hero-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centraliza no meio */
    text-align: center;
    max-width: 95%;
  }

  .hero-text h2 {
    font-size: 1.4rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .botao-hero {
    margin: 1.5rem auto 0 auto; /* Centraliza o botão */
    display: block;
  }

}

@media (max-width: 768px) {

  .hero-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centraliza no meio */
    text-align: center;
    max-width: 95%;
  }

  .hero-text h2 {
    font-size: 1.4rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .botao-hero {
    margin: 1.5rem auto 0 auto; /* Centraliza o botão */
    width: 80%;
  }

}

@media (max-width: 450px) {

  .hero-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centraliza no meio */
    text-align: center;
    max-width: 95%;
  }

  .hero-text h2 {
    font-size: 1rem;
  }

  .hero-text p {
    font-size: 0.8rem;
  }


}