@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root{
    --amarelo-principal: #ffcc2a;
    --verde-principal: #3a8759;
    --azul-marinho: #1a3785;
    --footer-bg: #183883;
    --creditos-bg: #12193a;
    --azul-claro: #00afee;
    --verde-abacate: #8dc54a;
    --vermelho-principal: #ee3439;
}

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow';
  }


  .section-title{
    text-align: center;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .section-title span{
    color: var(--azul-marinho);
    font-weight: 800;
  }
/* ==== MENU DO SITE ====*/
  nav {
    width: 100%;
    background-color: #fff;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
    z-index: 1000;
  }

  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .3rem;
  }

  .logo-desktop {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .logo-desktop img{
    height: 70px;
  }

  .menu {
    display: flex;
    gap: 1.5rem
  }

  .menu a {
    text-decoration: none;
    color: var(--azul-marinho);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
  }

  .client-btn {
    background-color: var(--azul-marinho);
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
  }

  .mobile-only {
    display: none;
  }

  .logo-mobile{
    display: none;
  }

  .menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 60%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu a{
    color: var(--azul-marinho);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  @media (min-width:300px) and (max-width: 1023px) {
    .menu,
    .desktop-only {
      display: none !important;
    }

    .logo-mobile{
        display: block;
    }

    .logo-desktop{
      display: none;
    }

    .logo-mobile img{
      height: 60px;
    }

    .mobile-only {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .client-btn.mobile-center {
      /*position: absolute;
      left: 50%;
      transform: translateX(-35%);*/
      font-size: 15px;
    }
  }

  /* === site hero === */
  .site-hero{
    background: url(bannerNovoSetembro2025-2.jpg) center center;
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
  }

  @media (min-width:300px) and (max-width: 380px){
    .site-hero{
      background-position: center center;
      height: 20vh;
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat;
    }
  }

  @media (min-width:379px) and (max-width: 767px){
    .site-hero{
      background-position: center center;
      height: 30vh;
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat;
    }
  }

  @media (min-width:768px) and (max-width: 1023px){
    .site-hero{
      background-position: center center;
      height: 50vh;
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat;
    }
  }

  /* ==== ABA PLANOS ==== */
  .area-planos{
    padding: 40px 0px;
  }

  .card-plano{
    background: linear-gradient(90deg, #feb61a, #fecc1d);
    /*border: 1px solid var(--vermelho-principal);*/
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0px;
    margin: 20px 0px;
  }

  @media(min-width:320px) and (max-width:379px){
    .card-plano{
      margin: 20px;
    }
  }

  @media(min-width:380px) and (max-width:767px){
    .card-plano{
      margin: 20px;
    }
  }

  .plano-title{

  }

  .plano-title h4{
    text-align: center;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 40px;
    padding: 10px;
    border-radius: 10px;
    background: var(--azul-marinho);
  }

  .plano-carac{
    padding-bottom: 20px;
  }

  .plano-carac li{
    list-style: none;
    font-size: 17px;
    padding: 5px 0px;
    font-weight: 500;
  }

  .plano-carac li i{
    color: var(--azul-marinho);
  }

  .plano-preco{

  }

  .plano-preco p{
    text-align: center;
    margin-bottom: 0;
  }

  .plano-preco h4{
    font-size: 40px;
    font-weight: 600;
  }

  .plano-preco  h4 span{
    font-size: 20px;
  }

  .plano-preco button{
    background: var(--azul-marinho);
    padding: 6px 30px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    margin: 10px;
    font-weight: 600;
  }

  .plano-preco p{
    text-transform: uppercase;
    font-weight: 500;
  }

  .plano-preco p a{
    color: var(--azul-marinho) !important;
    text-decoration: none;
    font-size: 20px;
  }

  .plano-preco button:hover{
    transform: scale(1.1);
    transition: .3s ease;
  }

  .plano-carac p{
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size:20px;
  }

  .carac-itens{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0px 40px;
    margin: 0;
    gap: 1.5rem;
  }

  .tv-div,.roteador{
    width: 85%;
    font-size: 17px !important;
  }

  .tv-div span{
    font-size: 50px;
    color: var(--azul-marinho);
  }

  .roteador span{
    font-size: 50px;
    color: var(--azul-marinho);
  }

  .promo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .promo p{
    background: var(--azul-marinho);
    padding: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    width: 85%;
    text-align: center;
  }

  .promo span{
    font-size: 13px;
  }

  /* ==== STREAMING ==== */
  .slide-1{
    background: url(banner-1.jpg);
  }

  .slide-2{
    background: url(banner-2.jpg);
  }

  .slide-3{
    background: url(banner-3.jpg);
  }

  .slide-1,.slide-2,.slide-3{
    margin: 30px 0px;
    width: 100%;
    height: 40vh;
    background-size:cover;
    background-repeat: no-repeat;
    border-radius: 20px;
  }

  @media (min-width:768px) and (max-width:1023px){
    .slide-1,.slide-2,.slide-3g{
      height: 25vh;
    }
  }

  @media (min-width:300px) and (max-width:767px){
    .slide-1,.slide-2,.slide-3{
      height: 15vh;
      border-radius: 5px;
      margin: 10px 0px;
    }
  }

  @media (min-width:300px) and (max-width:379px){
    .slide-1,.slide-2,.slide-3{
      height: 12vh;
      border-radius: 5px;
      margin: 10px 0px;
    }
  }

  /* ==== FAQ ====*/
  .site-faq{
    margin: 30px 0px;
  }

  .caixa-faq{
    padding: 0;
    margin-bottom: 20px;
    border:1px solid var(--vermelho-principal);
    border-radius: 10px 10px 0px 0px;
    max-height: 47px;
    overflow: hidden;
    transition: .7s ease;
    cursor: pointer;
  }

  .caixa-expand{
    max-height: 1000px;
    transition: .7s ease;
  }

  .pergunta{
    background: var(--vermelho-principal);
    color: #fff;
    border-radius: 8px 8px 0px 0px;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 500;
  }

  .resposta{
    padding: 10px 30px;
  }


  /* ==== CONTATO ====*/

  .contato{
    background: url(bgContato.jpg) top center;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0px;
    margin-top: 30px;
  }

  .endereco-infos{
    
  }

  .endereco-infos h4{
    font-weight: 600;
  }

  .endereco-infos p{
    font-weight: 500;
    font-size: 20px;
    width: 70%;
  }

  .botoes{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .botoes p a{
    color: #000 !important;
    text-decoration: none !important;
  }

  @media(min-width:300px) and (max-width:767px){
    .botoes{
      text-align: center;
    }

    .endereco-infos{
      text-align: center;
    }

    .endereco-infos p{
      width: 100%;
    }
  }

  .botoes h4{
    font-weight: 600;
  }

  .botoes button{
    background: transparent;
    border:2px solid var(--vermelho-principal);
    font-size: 20px;
    font-weight: 600;
    padding: 6px 70px;
    border-radius: 10px;
  }

  /* ==== RODAPE ==== */

  footer{
    background: var(--footer-bg);
  }

  .menu-rodape{
    padding: 40px 0px;
  }

  .logo-rodape img{
    height: 150px;
  }

  .nav-rodape h4{
    color: #fff;
    font-weight: 600;
  }

  .nav-rodape li{
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    list-style-type: none;
  }

  .nav-rodape li a{
    text-decoration: none;
    color: #fff;
  }

  .sociais h4{
    color: #fff;
    font-weight: 600;
  }

  .sociais span a{
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    padding-right: 10px;
  }

  @media(min-width:300px) and (max-width: 767px){
    .menu-rodape{
      text-align: center;
    }

    .nav-rodape{
      padding: 30px 0px;
    }
  }

  .site-creditos{
    background: var(--creditos-bg);
    padding: 40px 0px;
  }

  .site-creditos p{
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
  }

  .site-creditos p a{
    color: #fff;
    text-decoration: none;
    font-weight: 700;
  }

  @media(min-width: 320px) and (max-width:767px){
    .site-creditos p{
      font-size: 15px;
    }
  }