
.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/* Botão flutuante WhatsApp */
.whatsapp-fixo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #029eff;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: background 0.3s ease, transform 0.2s ease;
}

.whatsapp-fixo img {
    width: 24px;
    height: 24px;
}

.whatsapp-fixo:hover {
    background-color: #00cf23;
    transform: scale(1.05);
    color: white;
}

/* Ajusta no mobile */
@media (max-width: 480px) {
    .whatsapp-fixo {
        padding: 10px 14px;
        font-size: 14px;
    }
    .whatsapp-fixo img {
        width: 22px;
        height: 22px;
    }
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-toggler-icon{
background-color: #F0FBFC;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 40px 0;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    margin-left: 20px;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #F0FBFC;
}
.responsive-plan {
    width: 100%;
    max-width: 300px; /* Define o tamanho máximo */
    height: auto;
    display: block;
    margin: 0 auto;
    border: 2px solid #5fd9fe; /* Borda para destacar */
    border-radius: 10px; /* Cantos arredondados */
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); /* Sombra leve */
    transition: transform 0.3s, box-shadow 0.3s; /* Animação ao passar o mouse */
}

.responsive-plan:hover {
    transform: scale(1.05); /* Aumenta ligeiramente a imagem */
    box-shadow: 0 6px 42px rgba(0, 0, 0, 0.3); /* Sombra mais intensa ao passar o mouse */
}

.planos-principais, .planos-adicionais {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centraliza os itens */
    gap: 10px; /* Espaço entre as imagens */
    margin: 20px 0; /* Espaçamento vertical */
}

section.pricing-planosmoveis {
    padding: 10px; /* Espaçamento interno ao redor da seção */
}




@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;

}

.navbar-light .navbar-nav .nav-link {
    color: #EEEEEE;
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
    
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;

    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* ===== Header fix geral ===== */
.navbar,
.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* Logo dimensionável */
.logo-navbar {
  height: 64px;
  width: auto;
}

/* Links com menos padding no mobile */
.navbar-dark .navbar-nav .nav-link {
  padding: 24px 0;          /* desktop */
  font-weight: 600;
}

/* Evita aquele "quadrado claro" no ícone (você tinha aplicado bg no .navbar-toggler-icon) */
.navbar-toggler {
  border: none;
  padding: 6px 10px;
}

/* Em telas pequenas, melhora respiração e visibilidade do menu */
@media (max-width: 991.98px) {
  .navbar {
    padding: 0px 14px;
    min-height: 72px;
}

  .logo-navbar {
    height: 46px;           /* diminui a logo no mobile */
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 12px 0;        /* clique confortável no mobile */
    margin-right: 0;
  
  }

  /* Fundo do menu aberto (senão fica transparente sobre o banner) */
  .navbar .navbar-collapse {
    background-color: #040d81;
  }

  /* linha sutil separando a lista */
  .navbar-dark .navbar-nav { 
    border-top: 1px solid rgba(255,255,255,0.12);

  }
}

/* Se existir alguma regra anterior empurrando a navbar pra cima, neutraliza */
.navbar-light.sticky-top { top: 0 !important; } /* segurança caso a classe exista em outra página */


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }




}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


.btn-green {
    background-color: #02d533; /* Verde */
    border-color: #0ede3f; /* Verde */
    color: white;
}

.btn-green:hover {
    background-color: #00c8e7; /* Verde mais escuro no hover */
    border-color: #10012f;
    color: white;
}


@media (max-width: 767px) {
    .max-velocidade-section h2 {
        font-size: 1.8rem;
    }

    .max-velocidade-section .beneficio i {
        font-size: 1.5rem;
    }

    .max-velocidade-section .beneficio p {
        font-size: 0.9rem;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}
.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** vantagens***/

.titu-vantagens h1{
text-align: center;
font-size: 55px;
margin-bottom: 30px;

}
.vantagens-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.vantagem-card p{
    color: white;
}
/* Estilo dos cards */
.vantagem-card {
    background: #00065a;
    color: #ffffff;
    width: 300px;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 40px;
}

/* Hover com leve destaque */
.vantagens-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.vantagem-card {
    background: #00155a; /* azul escuro estilo sua imagem */
    color: #fff;
    width: 300px;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vantagem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.vantagem-card img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.vantagem-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #ffcc00; /* amarelo */
    margin-bottom: 8px;
}

.vantagem-card p {
    font-size: 14px;
    line-height: 1.4;
}



/* Responsividade */
@media (max-width: 768px) {
    .vantagem-card {
        width: 100%;
        max-width: 350px;
    }
}

/* 🔥 Aumenta apenas os logos de Mastergas e Viva Bem */
.vantagem-card.mastergas img,
.vantagem-card.vivabem img {
    width: 100px;   /* aumenta o tamanho */
    margin-bottom: -20px;
}
/* vantagens */




/*** PLANOS tradicional residencial***/
section.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  
  .plan {
    background: linear-gradient(42deg, #0250fa 0%, #128cde 100%);
    color: white;
    width: 250px;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 2px solid transparent;
  }
  
/* Pseudo-elemento para a borda animada */
.plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid #00e5ff; /* Cor da borda */
    border-radius: 10px;
    animation: borderMove 4s linear infinite;
    box-sizing: border-box;
}

/* Animação de borda circulando */
@keyframes borderMove {
    0% {
        clip-path: inset(0% 100% 0% 0%);
    }
    25% {
        clip-path: inset(0% 0% 100% 0%);
    }
    50% {
        clip-path: inset(0% 0% 0% 100%);
    }
    75% {
        clip-path: inset(100% 0% 0% 0%);
    }
    100% {
        clip-path: inset(0% 100% 0% 0%);
    }
}
/* Animação de borda circulando */
  .plan:hover {
    transform: translateY(-10px);
  }
  
  .plan img {
    width: 150px;
   
    margin-bottom: 15px;
  }
  
  .planos h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 10px;
    height: 10px;
    padding-bottom: 40px;
    text-align: center;
    margin-top: -30px;
    font-family:Verdana, Geneva, Tahoma, sans-serif

  }
   
  ul {
    list-style: none;
    margin: 10px 0;
  }
  
  ul li {
    margin-bottom: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
  }
  
  ul li::before {
    content: "✔"; /* Ícone de checkmark */
    color: white;
    margin-right: 10px;
  }
  
  .price {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    color: white;
  }
  
  button {
    background-color: rgb(27, 231, 0);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #00eaff;
  }
  
  /* Estilos para os planos de 500 e 800 MB */
  .plano-500-800 {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
  }

.planos h1{
    text-align: center;
    color: #03125e;
    flex-wrap: wrap;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}
.planos p{
    text-align: center;
  flex-wrap: wrap;
 font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 20px;
}

/*** PLANOS tradicional***/

  .planos h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 10px;
    height: 10px;
    padding-bottom: 40px;
    text-align: center;
    margin-top: -30px;
    font-family:Verdana, Geneva, Tahoma, sans-serif

  }
  
  ul {
    list-style: none;
    margin: 10px 0;
  }
  
  ul li {
    margin-bottom: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
  }
  
  ul li::before {
    content: "✔"; /* Ícone de checkmark */
    color: white;
    margin-right: 10px;
  }
  


.planos h1{
    text-align: center;
    color: #03125e;
    flex-wrap: wrap;
}


.planos-principais, .planos-adicionais {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;  
}

/*** PLANOS móveis***/

  /* Estilos responsivos */
  @media (max-width: 1200px) {
    section.pricing {
        flex-wrap: wrap;
    }
  
    .plano-500-800 {
        flex-wrap: wrap;
        justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    section.pricing, .plano-500-800 {
        flex-direction: column;
        align-items: center;
    }
  
    .plan {
        width: 100%;
        max-width: 350px;
    }
  }


.beneficios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.beneficio i {
    font-size: 30px;
    color: #007bff;
    margin-right: 15px;
}

.beneficio p {
    font-size: 16px;
    color: #333;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/*** PLANOS***/

/***Canais**/

/* Seção principal */
#canais {
  padding: 50px 20px;
  background: linear-gradient(135deg, #ffffff, #f0f4f8);
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

/* Título e subtítulo */
#canais .planos h1 {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 10px;
}

#canais .planos p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
}

/* Container responsivo */
.Container-planos-moveis {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Grid responsivo */
.Container-planos-moveis .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* Colunas */
.Container-planos-moveis .col-lg-6 {
  flex: 1 1 450px;
  max-width: 550px;
}

/* Imagem responsiva */
.Container-planos-moveis .img-fluid {
  width: 100%;
  max-width: 100%;
}

/* Título azul (text-primary1) */
.text-primary1 {
  color: #1565c0;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Texto de aplicativos */
.Container-planos-moveis p {
  text-align: left;
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 25px;
}

/* Botão estilizado */
.custom-btn {
  padding: 12px 25px;
  background-color: #2196f3;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.custom-btn:hover {
  background-color: #1769aa;
  transform: translateY(-2px);
}


/* Container */
.sobre-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 10%;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    flex-wrap: wrap; /* permite responsividade */
}

/* Imagem */
.sobre-imagem {
    flex: 1 1 400px;
    max-width: 500px;
}
.sobre-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.sobre-imagem img:hover {
    transform: scale(1.02);
}

/* Texto */
.sobre-texto {
    flex: 1 1 400px;
    color: #222;
}

/* Subtítulo */
.sobre-subtitulo {
    color: #00b4d8;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

/* Título */
.sobre-titulo {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Parágrafo */
.sobre-texto p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

/* Responsividade */
@media (max-width: 768px) {
    .sobre-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }
    .sobre-texto {
        text-align: center;
    }
    .sobre-texto p {
        text-align: justify;
    }
}

/*** maxima velocoidade planos ***/
.max-velocidade-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #250b7b;
    margin-bottom: 1rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.max-velocidade-section .sub-heading {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
}

.max-velocidade-section .beneficios {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.max-velocidade-section .beneficio {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.max-velocidade-section .beneficio i {
    font-size: 2rem;
    color: #e4ab00;
}

.max-velocidade-section .beneficio p {
    font-size: 1rem;
    color: #03125e;
    margin: 0;
}

.btn-moveiis{
    background-color: #000000;
    padding: 10px;
    border-radius: 10px;
    color: white;
}


/*** maxima velcoidade planos ***/

.container-xxl {
    margin-top: -60px;
}

.btn-assinar{
    background-color: rgb(64, 222, 2);
    border-radius: 5px;
    color: white;
    border: none;
}


/* Container da faixa */
.faixa-destaque {
  width: 100%;
  background: #ffcc00;              /* amarelo */
  border-top: 2px solid #e0b700;
  border-bottom: 2px solid #e0b700;
  overflow: hidden;                  /* esconde o excesso do texto rolando */
  margin-top: -50px;
}

/* Trilho que se move */
.faixa-track {
  display: flex;
  white-space: nowrap;
  gap: 2rem;                         /* espaço entre repeticoes */
  align-items: center;
  animation: faixa-scroll 5s linear infinite;
  will-change: transform;
}

/* Texto */
.faixa-text {
  display: inline-block;
  font: 700 1rem/1.8 "Segoe UI", Arial, sans-serif;
  color: #111;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .4rem 0;
}

/* Pausar ao passar o mouse (desktop) */
.faixa-destaque:hover .faixa-track {
  animation-play-state: paused;
}

/* Animação (rolagem contínua para a esquerda) */
@keyframes faixa-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* ajustado para combinar com textos duplicados */
}

/* Responsividade */
@media (min-width: 768px) {
  .faixa-text { font-size: 1.05rem; }
}
@media (min-width: 1024px) {
  .faixa-text { font-size: 1.1rem; }
}

/* Acessibilidade: se o usuário prefere menos movimento, não animar */
@media (prefers-reduced-motion: reduce) {
  .faixa-track { animation: none; }
}


.faixa-azul {
    background: #010958;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 20px 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: bold;
}

.texto-rolando {
    display: inline-block;
    padding-left: 100%; /* começa fora da tela */
    animation: rolar 12s linear infinite;
}

/* Animação */
@keyframes rolar {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Responsividade */
@media (max-width: 600px) {
    .faixa-preta {
        font-size: 14px;
        padding: 8px 0;
    }

.app-image img{
    margin-top: -20px;
}

.app-info h2{
    margin-top: -40px;
}

}


/*** Team ***/

/* Container geral */
.perfis-container {
    background: #00174f;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Títulos */
.perfis-container h6 {
    background: #ffffff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 10px;
}

.perfis-container h1 {
    font-size: 32px;
    font-weight: bold;
    color: #e0ec00;
    margin-bottom: 40px;
}

/* Grid dos cards */
.perfis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card */
.perfil-card {
    background: #ebbc00;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.perfil-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Imagem */
.perfil-card img {
    width: 100%;
    display: block;
    height: auto;
}

/* Texto */
.perfil-info {
    padding: 20px;
    text-align: center;
    color: white;
}

.perfil-info h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Botão */
.btn-perfil {
    background: #090066;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-perfil:hover {
    background: #0056b3;
}

/* Responsividade extra */
@media (max-width: 768px) {
    .perfis-container h1 {
        font-size: 26px;
    }
}


/*** Team ***/

/*--------------------------------------------------------------
# BOLETOs CENTRAL
--------------------------------------------------------------*/
/* Estilos básicos */

h2 {
    text-align: center;
    font-size: 32px;
    color: #0b0b0b;
    font-weight: bold;
    margin-bottom: 20px;
    font-family:Verdana, Geneva, Tahoma, sans-serif
}

p {
    font-size: 16px;
    color: #040404;
    text-align: left;
    margin-bottom: 20px;
}

section.features {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #04e9f1;
    margin-top: 10px;
    margin-left: 40px;
}

.section-title p {
    color: #000000;
    font-size: 16px;
}


/* Estilo para os ícones e boxes */
.icon-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 40px;
    background-color: #020b6d; 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px; 
}

.icon-box i {
    font-size: 48px;
    color: #ffffff; 
    margin-right: 20px;
}
.icon-box h4 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;

}

.icon-box p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

/* Estilo para a imagem */
.image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Estilo do botão */
.btn-77 {
    display: inline-block;
    background-color: rgb(38, 182, 12);
    color: #ffffff;
    border: 2px solid #00ff2a;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    margin: 30px auto;
    display: block;
    transition: all 0.3s ease;
}

.btn-77:hover {
    background-color: #0a0d69;
    color: white;
}

.btn-77 a {
    color: inherit;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 24px;
        flex-wrap: wrap;
    }

  
    .icon-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: -2px;
    }

    .icon-box i {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 36px;
    }

    .icon-box h4 {
        font-size: 18px;
    }

    .icon-box p {
        font-size: 14px;
    }

    .btn-77 {
        padding: 8px 20px;
        font-size: 14px;
    }

    .RESIDENCIAIS-planos h2 {
        font-size: 28px;
    }

    .RESIDENCIAIS-planos .sub-heading {
        font-size: 16px;
    }

    .beneficios {
        grid-template-columns: 1fr;
    }
    
    .beneficio i {
        font-size: 24px;
    }

.planos h1{
    font-size: 30px;
}
.planos p{
    font-size: 15px;
    flex-wrap: wrap;
}

}

.app-section {
    background: #f8f9fa;
    padding: 60px 10%;
    font-family: 'Poppins', sans-serif;
}

/* Container flexível */
.app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Imagem */
.app-image {
    flex: 1 1 350px;
    text-align: center;
}
.app-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.app-image img:hover {
    transform: scale(1.03);
}


/* planos tv */

.planos-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #070639, #1000bb);
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  margin-top: -50px;
}

.titulo-planos {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fefeff;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 10px;
}

.cards-container.centralizado {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.plano-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-top: 4px solid #efc701;
}

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

.plano-card h3 {
  font-size: 1.4rem;
  color: #2196f3;
  margin-bottom: 15px;
}

.plano-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.preco {
  font-weight: bold;
  color: #1a1a1a;
  font-size: 1.3rem;
}

/* Estilo para destaque (último plano) */
.plano-card.destaque {
  border-top: 4px solid #e91e63;
  background: #fff3f8;
}
.btn-assinar {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #01ce15;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-assinar:hover {
  background-color: #1769aa;
}
/* planos tv */


/* Texto */
.app-info {
    flex: 1 1 400px;
}
.app-info h2 {
    font-size: 30px;
    color: #222;
    margin-bottom: 15px;
}
.app-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Botões */
.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-app {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: #000000;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}
.btn-app img {
    width: 50px;
    height: auto;
}
.btn-app:hover {
    background: #141414;
}

/* Botões com cores diferentes */
.btn-app.ios {
    background: #000;
}
.btn-app.ios:hover {
    background: #333;
}

/* Responsividade */
@media (max-width: 768px) {
    .app-content {
        flex-direction: column;
        text-align: center;
    }
    .app-buttons {
        justify-content: center;
    }
}















/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/


@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }

}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

@media only screen and (min-width: 412px) and (max-width: 915px) {

    .mapa{
        padding-left: 20px;
    }
}

@media screen and (max-width:600px){
.mapa{
    width: 320px;
    
}

.section-title h2{
        margin-left: -0px;
    }

.image img{
    margin-top: -40px;
}
}

/* Estilo padrão da barra de navegação */
.navbar {
    background-color: #040d81; /* Cor de fundo azul */
    height: auto; /* Permite altura automática */
}

/* Ajustes para dispositivos móveis */
@media (max-width: 767px) {
    .navbar {
        min-height: 115px; /* Ajuste esse valor para aumentar a altura conforme necessário */
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Footer Start */

.bg-blue {
    background-color: #190864 !important; 
}

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background-color: rgb(0, 0, 0);
    border: 0;
}