.bg-banner {
  background-image: url(https://via.placeholder.com/1920x1080);
  background-repeat: no-repeat;
  background-size: cover; /* Corrigido */
  background-position: center; /* Centraliza a imagem */
  min-height: 100vh;
}

.bg-banner .banner-text {
  height: 90vh; /* Ajuste para evitar corte em telas pequenas */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icon-border {
  border: 1px solid white;
  border-radius: 30px;
  width: 40px;
  height: 40px;
  text-align: center;
}

.linha-amarela {
  border: 1px solid #f7d909;
  width: 100px;
  border-radius: 10px;
}

.linha-azul {
  border: 1px solid blue;
  width: 100px;
  border-radius: 10px;
}

.bg-white {
  background-color: white;
}

.bg-gray {
  background-color: whitesmoke;
}

.first-card-radius-top-20 {
  border-radius: 20px 0 0 0 !important;
}

@media screen and (max-width: 576px) {
  .first-card-radius-top-20 {
    border-radius: 20px 20px 0 0 !important;
  }
}

.first-card-radius-bottom-20 {
  border-radius: 0 0 0 20px !important;
}

@media screen and (max-width: 576px) {
  .first-card-radius-bottom-20 {
    border-radius: 0 0 20px 20px !important;
  }
}

.third-card-radius-top-20 {
  border-radius: 0 20px 0 0 !important;
}

@media screen and (max-width: 576px) {
  .third-card-radius-top-20 {
    border-radius: 20px 20px 0 0 !important;
  }
}

.third-card-radius-bottom-20 {
  border-radius: 0 0 20px 0 !important;
}

@media screen and (max-width: 576px) {
  .third-card-radius-bottom-20 {
    border-radius: 0 0 20px 20px !important;
  }
}

.border-top-left-radius-15 {
  border-top-left-radius: 15px;
}

.border-top-right-radius-15 {
  border-top-right-radius: 15px;
}

.border-20 {
  border-radius: 20px;
}

.border-35 {
  border-radius: 35px;
}

.border-top-radius-18 {
  border-top-left-radius: 18px !important;
  border-top-right-radius: 18px !important;
}

.border-top-radius-20 {
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
}

.border-bottom-radius-18 {
  border-bottom-left-radius: 18px !important;
  border-bottom-right-radius: 18px !important;
}

.border-bottom-radius-20 {
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
}

@media screen and (min-width: 577px) and (max-width: 991px) {
  .fake-border::after {
    content: ' ';
    height: 25%;
    width: 2px;
    position: absolute;
    -webkit-transform: translate(90px, -100%);
            transform: translate(90px, -100%);
    bottom: 0;
    background-color: #000;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .fake-border::after {
    content: ' ';
    height: 25%;
    width: 2px;
    position: absolute;
    -webkit-transform: translate(119px, -100%);
            transform: translate(119px, -100%);
    bottom: 0;
    background-color: #000;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .fake-border::after {
    content: ' ';
    height: 25%;
    width: 2px;
    position: absolute;
    -webkit-transform: translate(142px, -100%);
            transform: translate(142px, -100%);
    bottom: 0;
    background-color: #000;
  }
}

@media screen and (min-width: 1201px) {
  .fake-border::after {
    content: ' ';
    height: 25%;
    width: 2px;
    position: absolute;
    -webkit-transform: translate(165px, -100%);
            transform: translate(165px, -100%);
    bottom: 0;
    background-color: #000;
  }
}

@media screen and (max-width: 576px) {
  .fake-border-bottom::after {
    content: ' ';
    height: 1px;
    width: 80px;
    position: absolute;
    -webkit-transform: translate(-40px, 5px);
            transform: translate(-40px, 5px);
    background-color: #000;
  }
}

.z-1 {
  z-index: 1;
}

.caption-home {
  left: 10%;
  top: 30%;
  bottom: 50%;
  text-align: left;
}

.aditional-content {
  bottom: 15px;
}

@media screen and (min-width: 992px) and (max-width: 1023px) {
  .aditional-content {
    bottom: 20px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .aditional-content {
    bottom: 34px;
  }
}

.rounded-25 {
  border-radius: 25px;
}

.fs-adaptable-1 {
  font-size: clamp(3em, 6em, 11vh);
}

.fs-adaptable-2 {
  font-size: clamp(2em, 4em, 7vh);
}

.fs-adaptable-3 {
  font-size: clamp(3em, 5em, 10vh);
}

.scale-11 {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* REGRA NOVA E ESPECÍFICA */
.testimonial-block {
  border: none;
}

.popular {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: -52px;
  top: 32px;
  width: 200px;
}

.border-bottom-white-1 {
  border-bottom: 1px solid white;
}

.linha-azul-bottom {
  border-bottom: 4px solid blue;
  width: 100px;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .divider::after {
    content: ' ';
    height: 10px;
    width: 50%;
    position: absolute;
    -webkit-transform: translateX(23vw);
            transform: translateX(23vw);
    background-color: #fff;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .divider::after {
    content: ' ';
    height: 50%;
    width: 10px;
    position: absolute;
    -webkit-transform: translate(44vw, -35%);
            transform: translate(44vw, -35%);
    bottom: 0;
    background-color: #fff;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .divider::after {
    content: ' ';
    height: 50%;
    width: 10px;
    position: absolute;
    -webkit-transform: translate(49vw, -35%);
            transform: translate(49vw, -35%);
    bottom: 0;
    background-color: #fff;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1440px) {
  .divider::after {
    content: ' ';
    height: 50%;
    width: 10px;
    position: absolute;
    -webkit-transform: translate(47vw, -35%);
            transform: translate(47vw, -35%);
    bottom: 0;
    background-color: #fff;
  }
}

@media screen and (min-width: 2560px) {
  .divider::after {
    content: ' ';
    height: 50%;
    width: 10px;
    position: absolute;
    -webkit-transform: translate(26vw, -35%);
            transform: translate(26vw, -35%);
    bottom: 0;
    background-color: #fff;
  }
}

.testimonial-view {
  border-radius: 3px;
}

.testimonial-view.top-margin .testimonial-block_user {
  margin-top: -60px;
}

@media (min-width: 900px) {
  .testimonial-view.top-margin .testimonial-block_user {
    margin-top: -100px;
  }
}

.testimonial-view img.left-quote {
  opacity: 0.01;
  width: 20%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  position: absolute;
  left: 40%;
}

@media (min-width: 900px) {
  .testimonial-view .carousel-control-prev {
    left: 3px;
  }
  .testimonial-view .carousel-control-next {
    right: 3px;
  }
  .testimonial-view .carousel-control-next-icon,
  .testimonial-view .carousel-control-prev-icon {
    width: 40px;
    height: 40px;
  }
}

.section-header,
.testimonial-block_user_info_name {
  font-weight: bold;
  text-align: center;
  position: relative;
}

.testimonial-block {
  margin: 50px 15px;
  background: #fff;
  color: #333;
  -webkit-box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.15);
}

@media (min-width: 900px) {
  .testimonial-block {
    margin: 50px;
  }
}

.testimonial-block .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
}

.testimonial-block .testimonial-block_user {
  margin-bottom: 30px;
  text-align: center;
}

.testimonial-block .testimonial-block_user .testimonial-block_user_image {
  position: relative;
  margin: 0 15px 30px 15px;
}

.testimonial-block .testimonial-block_user .testimonial-block_user_image img {
  border-radius: 170px;
  -webkit-box-shadow: 0px 8px 0px 1px rgba(0, 45, 255, 0.4);
  box-shadow: 0px 8px 0px 1px rgba(0, 45, 255, 0.4);
  margin-top: -30px;
}

.testimonial-block .testimonial-block_content {
  font-size: 13px;
}

.top-margin .testimonial-block .row {
  place-items: normal;
}

.h-153 {
  height: 153px;
}

.w-5 {
  width: 5%;
}

.inputFibra {
  border-radius: 30px !important;
  border-color: blue !important;
  border-width: 2px !important;
}

.txtAreaFibra {
  border-radius: 20px !important;
  border-color: blue !important;
  border-width: 2px !important;
}

@media screen and (max-width: 576px) {
  .video {
    height: 225px;
  }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
  .video {
    height: 399px;
  }
}

@media screen and (min-width: 993px) and (max-width: 1024px) {
  .video {
    height: 525px;
  }
}

@media screen and (min-width: 1025px) {
  .video {
    height: 737px;
  }
}

.checkout-card-header-border {
  border-radius: 20px 20px 0px 0px !important;
}

.checkout-card-footer-border {
  border-radius: 0px 0px 20px 20px !important;
}

.card-body-border {
  border-right: 3px #0898f8 solid;
  border-left: 3px #0898f8 solid;
}

.inputCheckout {
  border-radius: 30px !important;
  border-color: #0898f8 !important;
  border-width: 2px !important;
}

.nav-button:hover {
  color: #000 !important;
}

.nav-link {
  color: white !important;
}

@media screen and (max-width: 767px) {
  .nav-link {
    color: #000 !important;
  }
}

.dropdown-correction[data-bs-popper] {
  top: 69%;
  left: unset;
}

@media screen and (max-width: 1199px) {
  .mobile-dropdown {
    background-color: #fff;
  }
}

.img-brand {
  height: 80px;
}

@media screen and (max-width: 576px) {
  .img-brand {
    height: 30px;
  }
}

@media screen and (max-width: 991px) {
  .bg-custom {
    background-color: #fff;
  }
}

@media screen and (max-width: 992px) {
  .nav-link-azulEscuro {
    color: #0898f8 !important;
  }
}

@media screen and (max-width: 992px) {
  .nav-link-checkout {
    color: #fff !important;
  }
}

.ico {
  width: 20px;
  height: 20px;
}

.clicker {
  cursor: pointer;
}

.footer-linha {
  border-top: 2px solid white;
}


.assinatura {
  font-size: clamp(0.5rem, 1.5vw, 0.7rem);
}

.pfooter {
  font-size: clamp(0.7rem, 1.5vw, 0.7rem);
}

.linha-amarela-160 {
  border: 1px solid #f7d909;
  width: 160px;
  border-radius: 10px;
}

.linha-amarela-125 {
  border: 1px solid #f7d909;
  width: 125px;
  border-radius: 10px;
}

.linha-top {
  z-index: 1;
  position: relative;
}

.linha-top::before {
  background: #f7d909;
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  width: 125px;
  z-index: -1;
  top: 10px;
}

.linha-bot {
  z-index: 1;
  position: relative;
}

.linha-bot::after {
  background: white;
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  width: 90%;
  z-index: -1;
  bottom: 0px;
}

.list {
  padding-top: 1.5rem;
}

.list::marker {
  color: #2f8cfb;
}

.map {
  display: block;
  max-width: 50%;
  height: auto;
  position: absolute;
  z-index: 1;
  right: 10vw;
  bottom: -10vh;
}

@media only screen and (min-width: 992px) {
  .map {
    bottom: -40vh;
  }
}

.bg-info {
  background-color: #94dbf7 !important;
}

.bg-info-top {
  background-color: #afe1f8 !important;
}

.bg-primary {
  background-color: #2f8cfb !important;
}

.card-header {
  padding: .5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 2px solid rgba(255, 255, 255, 0.268);
}

.btn-warning {
  color: #000;
  background-color: #f7d909;
  border-color: #f7d909;
}

.text-primary {
  color: #2f8cfb !important;
}

.btn-yellow {
  background-color: #f7d909;
  border-color: #f7d909;
  color: black;
}

.btn-yellow:hover {
  background-color: #f7d909;
  border-color: black;
  color: black;
}

.btn-outline-yellow {
  border-color: #f7d909;
}

.btn-outline-yellow:hover {
  color: #000 !important;
  background-color: #f7d909;
  border-color: #f7d909;
}

.btn-outline-white {
  color: white;
  border-color: white;
}

.btn-outline-white:hover {
  color: #2f8cfb !important;
  background-color: white;
  border-color: white;
}

.icone {
  max-width: 100%;
  height: 50px;
}

.icone-cc {
  font-family: Arial, Verdana;
  background-image: url("../images/icon_viafibra_19.svg");
  background-position: 16px 8px;
  background-repeat: no-repeat;
  color: #2f8cfb;
  background-size: 20px 20px;
}

.icone-cc:hover {
  color: #2f8cfb;
  background-color: white;
}

.icone-tel {
  font-family: Arial, Verdana;
  background-image: url("../images/icon_viafibra_20.svg");
  background-position: 16px 8px;
  background-repeat: no-repeat;
  color: white;
  background-size: 20px 20px;
}

@media screen and (max-width: 767px) {
  .icone-tel {
    background-image: url("../images/icon_viafibra_10.svg");
    color: #000;
  }
}

.icone-tel:hover {
  background-image: url("../images/icon_viafibra_17.svg");
  color: #2f8cfb;
}

.icone-plan {
  font-family: Arial, Verdana;
  background-image: url("../images/icon_viafibra_21.svg");
  background-position: 16px 8px;
  background-repeat: no-repeat;
  color: white;
  background-size: 20px 20px;
}

@media screen and (max-width: 767px) {
  .icone-plan {
    background-image: url("../images/icon_viafibra_11.svg");
    color: #000;
  }
}

.icone-plan:hover {
  background-image: url("../images/icon_viafibra_18.svg");
  color: #2f8cfb;
}

.icone-cc-checkout {
  font-family: Arial, Verdana;
  background-image: url("../images/icon_viafibra_19.svg");
  background-position: 16px 8px;
  background-repeat: no-repeat;
  color: #2f8cfb;
  background-size: 20px 20px;
}

.icone-tel-checkout {
  font-family: Arial, Verdana;
  background-image: url("../images/icon_viafibra_10.svg");
  background-position: 16px 8px;
  background-repeat: no-repeat;
  color: white;
  background-size: 20px 20px;
}

.icone-plan-checkout {
  font-family: Arial, Verdana;
  background-image: url("../images/icon_viafibra_11.svg");
  background-position: 16px 8px;
  background-repeat: no-repeat;
  color: white;
  background-size: 20px 20px;
}

.text-nav {
  vertical-align: middle;
}

.click-not {
  pointer-events: none;
}

.dropdown-fy[data-bs-popper] {
  left: unset;
  top: unset;
}

@media screen and (max-width: 767px) {
  .dropdown-fy[data-bs-popper] {
    top: 25%;
    text-align: center;
    width: 100%;
  }
}

.dropdown-enterprise[data-bs-popper] {
  left: unset;
  top: unset;
}

@media screen and (max-width: 767px) {
  .dropdown-enterprise[data-bs-popper] {
    top: 35%;
    text-align: center;
    width: 100%;
  }
}

.dropdown-menu {
  border-radius: 11px;
}


.ico {
  font-size: 45px;
  color: #25D366;
  margin-bottom: 15px;
}
/*# sourceMappingURL=style.css.map */

/* ============================================= */
/* ===== NOVOS ESTILOS PARA O HEADER - CLARO ===== */
/* ============================================= */

/* 1. A Barra Principal do Header */
.bg-custom {
    background-color: #2f8cfb !important; /* COR DO HEADER: Azul, como solicitado */
    position: relative !important;
    padding: 1rem 0;
    transition: background-color 0.3s ease; /* Adiciona uma transição suave */
}

/* 2. Ajuste no Logo */
.img-brand-novo {
    height: 50px;
    transition: transform 0.3s ease;
}
.img-brand-novo:hover {
    transform: scale(1.05);
}

/* 3. Estilo dos Links de Navegação Centrais */
.navbar-dark .navbar-nav .nav-link {
    color: white; /* COR DA FONTE: Branca, como solicitado */
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Efeito ao passar o mouse e no link ativo */
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
    border-bottom-color: #FFCA2C; /* Usando o novo tom de amarelo */
}

/* 4. Estilo do Botão de Ação (Área do Cliente) */
.btn-header-yellow {
    background-color: transparent;  /* COR DO BOTÃO: Amarela, como solicitado */
    color: #FFCA2C;            /* COR DA FONTE DO BOTÃO: Azul, como solicitado */
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border: 2px solid #FFCA2C; /* Borda inicial transparente para um hover suave */
    transition: all 0.3s ease;
}

/* 4. Estilo do Botão de Ação (Área do Cliente) - COM EFEITO AVANÇADO */
.btn-header-yellow {
    /* Estado inicial do botão (sem o mouse em cima) */
    background-color: #FFCA2C;      /* Fundo amarelo sólido */
    color: #2f8cfb;                /* Fonte azul */
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border: 2px solid #FFCA2C;      /* Borda amarela */
    position: relative;             /* Essencial para o efeito de animação */
    z-index: 1;
    overflow: hidden;               /* Esconde os elementos da animação que estão fora */
    transition: color 0.4s ease;    /* Transição suave para a cor da fonte */
}

/* No hover, a fonte fica branca para contrastar com a animação */
.btn-header-yellow:hover {
    color: #ffffff;
}

/* Criando a primeira metade da animação (que vem da esquerda) */
.btn-header-yellow::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 50%; /* Metade da largura */
    height: 100%;
    background-color: #2f8cfb; /* A cor da animação será azul */
    transform: translateX(-100%); /* Começa totalmente fora, à esquerda */
    transition: transform 0.4s ease;
}

/* Criando a segunda metade da animação (que vem da direita) */
.btn-header-yellow::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 50%; /* Metade da largura */
    height: 100%;
    background-color: #2f8cfb; /* A cor da animação também será azul */
    transform: translateX(100%); /* Começa totalmente fora, à direita */
    transition: transform 0.4s ease;
}

/* Quando o mouse passa por cima, as duas metades entram */
.btn-header-yellow:hover::before,
.btn-header-yellow:hover::after {
    transform: translateX(0); /* Move as metades para a posição original, preenchendo o fundo */
}

/* 6. Ajustes para o Menu Mobile (Mantidos como antes) */
@media (max-width: 991px) {
    .navbar-collapse {
        padding: 20px;
        margin-top: 15px;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }
    .navbar-dark .navbar-nav .nav-link {
        text-align: center;
        padding: 10px;
        border-bottom: none;
    }
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
       background-color: rgba(255, 255, 255, 0.1);
       border-radius: 5px;
       border-bottom: none;
    }
    .d-flex {
        justify-content: center;
        margin-top: 20px;
    }
}

/* ============================================= */
/* ===== ESTILOS PARA O TÍTULO DA SEÇÃO DE PLANOS ===== */
/* ============================================= */

.section-title-wrapper {
    text-align: center;
    padding: 2rem 0 0.5rem 0;
}

.section-title {
    font-size: 2.5rem; /* Fonte maior */
    font-weight: 700; /* Fonte em negrito */
    color: #2f8cfb; /* Cor azul primária */
    text-transform: uppercase; /* Tudo em maiúsculas para dar impacto */
    margin-bottom: 1rem;
    position: relative; /* Necessário para a linha decorativa */
    display: inline-block; /* Faz o elemento se ajustar ao tamanho do texto */
}

/* Linha decorativa amarela abaixo do título */
.section-title::after {
    content: '';
    display: block;
    width: 80px; /* Largura da linha */
    height: 4px; /* Espessura da linha */
    background-color: #FFCA2C; /* Cor amarela para combinar com os botões */
    border-radius: 2px;
    margin: 0.75rem auto 0; /* Centraliza a linha abaixo do título */
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d; /* Um cinza sutil para o subtítulo */
    margin-top: 0;
}

/* ============================================= */
/* ===== SEÇÃO DE CONTATO - ESTILO FINAL LED ===== */
/* ============================================= */

.contact-section-final {
    padding: 3rem 0 3rem 0; /* Mantém o topo, mas diminui a base de 5rem para 3rem */
}

/* 2. O Container da Borda Animada (Técnica do seu exemplo) */
.form-animated-border,
.info-animated-border {
    /* A mágica acontece aqui: um fundo sólido interno e um gradiente na borda */
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(145deg, #d8ca00, #2c99ff, #366cad) border-box;
    border: 3px solid transparent;
    border-radius: 16px;
    background-size: 300% 100%; /* Tamanho do gradiente para permitir a animação */
    animation: gradient-animation 8s ease infinite; /* Animação constante */
}
.info-animated-border {
    height: 100%; /* Garante que a caixa de info tenha a mesma altura */
}

/* Animação do gradiente da borda */
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 3. Conteúdo Interno dos Painéis */
.contact-form-final {
    padding: 2.5rem;
}
.contact-info-final {
    padding: 2.5rem;
    text-align: center; /* CENTRALIZA as informações de contato */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* 4. Estilo dos Campos do Formulário (Label preta, sem placeholder) */
.contact-form-final .form-group {
    margin-bottom: 1.5rem;
}
.contact-form-final .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000000; /* COR PRETA para o label, como solicitado */
    font-size: 0.9rem;
    font-weight: 600;
}
.contact-form-final .form-control,
.contact-form-final .form-select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    color: #333; /* Cor do texto digitado */
    background-color: #f8f9fa; /* Fundo cinza bem claro para os campos */
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}
.contact-form-final .form-control:focus,
.contact-form-final .form-select:focus {
    outline: none;
    border-color: #2f8cfb;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(47, 140, 251, 0.15);
}

/* 5. Botão de Envio */
.btn-submit-final {
    background-color: #2f8cfb;
    color: #ffffff;
    font-weight: 600;
    padding: 14px;
    border-radius: 8px !important;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.btn-submit-final:hover {
    background-color: #1e78d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(47, 140, 251, 0.3);
}

/* 6. Informações de Contato (Centralizadas) */
.contact-info-final .contact-info-title {
    font-weight: 700;
    color: #212529;
}
.contact-info-final .contact-info-subtitle {
    color: #6c757d;
    margin-bottom: 2.5rem;
}
.contact-info-final .contact-item {
    margin-bottom: 2rem;
}
.contact-info-final .contact-item i {
    font-size: 2rem;
    color: #2f8cfb;
    margin-bottom: 0.5rem;
}
.contact-info-final .contact-item strong {
    font-size: 1rem;
    color: #343a40;
    display: block;
}
.contact-info-final .contact-item span, .contact-item a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
}
.contact-info-final .contact-item a:hover {
    color: #2f8cfb;
}

/* Ajuste para telas menores */
@media (max-width: 991px) {
    .info-animated-border {
        margin-top: 2rem;
    }
}

/* ================================================================= */
/* == CSS UNIFICADO PARA CARDS DE TELEFONIA (MAIORES E INTERATIVOS) == */
/* ================================================================= */

.faixa-cinza-menor .card {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.faixa-cinza-menor .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(47, 140, 251, 0.25);
}

.faixa-cinza-menor .card .card-header {
    flex-grow: 0;
}

.faixa-cinza-menor .card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faixa-cinza-menor .card .h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.faixa-cinza-menor .card .py-3.px-4 p {
    font-size: 0.9rem;
    padding: 0.4rem 0 !important;
    border-bottom-color: rgba(255, 255, 255, 0.3) !important;
}
.faixa-cinza-menor .card .py-3.px-4 p:last-child {
    border-bottom: none !important;
}

.faixa-cinza-menor .card .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.2s ease;
}

.faixa-cinza-menor .card:hover .btn {
    transform: scale(1.05);
}

.popular {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ============================================= */
/* ===== NOVA SEÇÃO DE NÚMEROS ANIMADOS ===== */
/* ============================================= */

.stats-section {
    background-color: #2f8cfb;
    padding: 0rem 0; /* ANTES: 4rem 0. Reduzimos o espaçamento vertical. */
    color: #ffffff;
}

.stat-block {
    text-align: center;
}

.stat-icon {
    font-size: 3rem; /* Tamanho do ícone */
    opacity: 0.7;
    margin-bottom: 1rem;
}

.stat-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    line-height: 1;
}

.stat-number {
    font-size: 4.5rem; /* Tamanho grande para o número */
    font-weight: 700;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Ajuste para telas menores */
@media (max-width: 767px) {
    .stat-block {
        margin-bottom: 3rem;
    }
    .stat-block:last-child {
        margin-bottom: 0;
    }
}

/* ============================================= */
/* ===== 1. SEÇÃO MELHOR EXPERIÊNCIA ===== */
/* ============================================= */

.melhor-experiencia-section .p-4 {
    background-color: #ffffff !important; /* Fundo branco para um visual limpo */
    border: 1px solid #f1f3f5; /* Borda cinza super sutil */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Sombra muito leve */
}

/* Efeito Interativo de Hover */
.melhor-experiencia-section .p-4:hover {
    transform: translateY(-8px); /* Card "levanta" */
    border-color: #2f8cfb; /* Borda fica azul */
    box-shadow: 0 10px 25px rgba(47, 140, 251, 0.1); /* Sombra azulada */
}

/* Estilo do ícone dentro do card */
.melhor-experiencia-section .icone {
    height: 40px; /* Tamanho do ícone */
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

/* Ícone gira sutilmente no hover */
.melhor-experiencia-section .p-4:hover .icone {
    transform: scale(1.1) rotate(-5deg);
}

.melhor-experiencia-section p {
    font-weight: 500;
    color: #343a40; /* Texto mais escuro e legível */
}

/* ============================================= */
/* ===== 2. SEÇÃO DE VÍDEO ===== */
/* ============================================= */

.video-container {
    padding: 2rem 0 !important;
}

.video-container iframe {
    border-radius: 15px; /* Cantos arredondados para o vídeo */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); /* Sombra para destacar */
    border: 1px solid #dee2e6;
    padding: 0 !important; /* Remove o padding antigo */
    max-width: 800px; /* Limita a largura máxima do vídeo */
    margin: 0 auto; /* Centraliza o vídeo */
    height: 450px; /* Altura fixa para o container do vídeo */
}

@media screen and (max-width: 576px) {
    .video-container iframe {
        height: 250px;
    }
}

/* ============================================= */
/* ===== 3. NOVA SEÇÃO DE DEPOIMENTOS (SCROLLER) ===== */
/* ============================================= */

/* CÓDIGO CORRIGIDO */
.testimonial-section {
    background-color: #f8f9fa;
    padding: 0rem 0 2.5rem 0;
}

.testimonial-scroller {
    overflow: hidden; /* Esconde o excesso de conteúdo */
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent); /* Efeito de fade nas laterais */
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 1.5rem; /* Espaçamento entre os cards */
    width: calc(380px * 6); /* (Largura do Card + Gap) * (Número de Cards * 2) */
    animation: marquee-scroll 40s linear infinite; /* Animação constante */
}

/* Pausa a animação ao passar o mouse */
.testimonial-scroller:hover .scroller-track {
    animation-play-state: paused;
}

/* Animação do letreiro */
@keyframes marquee-scroll {
    to {
        transform: translateX(calc(-380px * 3)); /* Metade da largura total do track */
    }
}

/* Estilo do Card Individual */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    width: 350px; /* Largura fixa para cada card */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    padding: 0;
    background: none;
    margin-bottom: 1rem;
}

.testimonial-card .star-rating {
    color: #fdcc0d; /* Cor de estrela (amarelo) */
}
.testimonial-card .google-logo {
    height: 18px; /* Tamanho do logo do Google */
    width: auto;
}

.testimonial-card .card-text {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
    flex-grow: 1; /* Faz o texto ocupar o espaço disponível */
}

.testimonial-card .card-footer {
    display: flex;
    align-items: center;
    border-top: 1px solid #f1f3f5;
    padding-top: 1rem;
    margin-top: 1rem;
    background: none;
}

.testimonial-card .user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
}

.testimonial-card .user-info strong {
    font-size: 0.9rem;
    color: #212529;
}
.testimonial-card .user-info span {
    font-size: 0.8rem;
    color: #6c757d;
}

/* ================================================================= */
/* ===== 4. CSS UNIFICADO PARA TODOS OS CARDS DE PLANOS (INTERNET E TELEFONE) ===== */
/* ================================================================= */

/* Seleciona os cards nas duas seções de plano */
.faixa-cinza .card,
.faixa-cinza-menor .card {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Efeito INTERATIVO de Hover para TODOS os cards */
.faixa-cinza .card:hover,
.faixa-cinza-menor .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(47, 140, 251, 0.25);
}

/* Organização interna */
.faixa-cinza .card .card-body,
.faixa-cinza-menor .card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Interação para o Botão "Assinar agora" */
.faixa-cinza .card .btn,
.faixa-cinza-menor .card .btn {
    transition: transform 0.2s ease;
}

.faixa-cinza .card:hover .btn,
.faixa-cinza-menor .card:hover .btn {
    transform: scale(1.05); /* Botão cresce um pouco no hover do card */
}

a#navbarDarkDropdownMenuLink {
    font-weight: 700 !important;
}
a.nav-link.nav-link-azulEscuro.text-center {
    font-weight: 700 !important;
}
img.d-block.d-md-none.w-100 {
    margin: 65px 0 100px 0 !important;
}
.modal-body {
    left: 10%;

}
.bannerpopupmob{
    display:none;

}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
    margin: 5% 0px 0px 0px;
}
@media (max-width:720px){
    .bannerpopupmob{
        display:block;
    }
    .bannerpopupdesk{
        display:none;
    }
    .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
    margin: 40% 0px 0px 0px;
}
}

.card-body, .card-header {
        flex-grow: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    .btn {
        margin-top: auto !important; /* Empurra o botão para o final do card */
    }
    .text-center {
        text-align: center !important;
    }
    /* .container.px-5.px-sm-0.px-lg-5 {
        max-width: 1600px !important;
        width: 1600px !important;
    } */
    .card-body.text-center.first-card-radius-bottom-20.bg-info.py-3 {
        border-radius: 0px 0px 20px 20px !important;
    }
    .card-header:first-child {
        border-radius: calc(1.25rem - -1px) calc(1.25rem - 3px) 0 0 !important;
    }
    .card-body.text-center.third-card-radius-bottom-20.bg-info.py-3 {
        border-radius: 0px 0px 24px 20px !important;
    }
    span.propag img {
        width: 80px !important;
    }

/* ============================================= */
/* ===== RODAPÉ FINAL (COMPACTO) ===== */
/* ============================================= */

.footer-final {
    background-color: #2F8CFB; /* Fundo escuro (quase preto) */
    color: #ffffff; /* Cor do texto principal (cinza claro) */
    padding: 2.5rem 0 1rem 0; /* Espaçamento enxuto */
    font-size: 0.9rem;
}

/* Linha Superior: Logo e Redes Sociais */
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333; /* Linha divisória sutil */
}
.footer-logo img {
    height: 40px; /* Logo com tamanho reduzido e elegante */
    opacity: 0.9;
}
.footer-social a {
    color: #ffffff;
    font-size: 1.2rem;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    color: #003ab8; /* Ícone fica branco no hover */
    transform: translateY(-2px);
}

/* Linha Principal: Colunas de Links */
.footer-links-row h5 {
    color: #ffffff; /* Títulos das colunas em branco */
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links-row ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-row ul li {
    margin-bottom: 0.6rem;
}
.footer-links-row a {
    color: #fdfdfd;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links-row a:hover {
    color: #ffffff; /* Link fica branco no hover */
    padding-left: 4px;
}

/* Linha Inferior: Copyright */
.footer-bottom-row {
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid #333; /* Linha divisória sutil */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #ffffff;
}
.footer-bottom-row a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom-row a:hover {
    color: #ffffff;
}

/* Responsividade para o rodapé */
@media (max-width: 767px) {
    .footer-top-row, .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo {
        margin-bottom: 1.5rem;
    }
    .footer-social a {
        margin: 0 0.75rem;
    }
    .footer-links-row .col-6 {
        margin-bottom: 2rem; /* Espaço entre as linhas de links no mobile */
    }
    .footer-bottom-row {
        gap: 0.5rem;
    }
}

/* ============================================= */
/* =============== PÁGINA PLANOS =============== */
/* ============================================= */

.card {
        min-height: 500px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    .card-body, .card-header {
        flex-grow: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    .btn {
        margin-top: auto !important;
    }
    .text-center {
        text-align: center !important;
    }

    .card-body.text-center.first-card-radius-bottom-20.bg-info.py-3 {
        border-radius: 0px 0px 20px 20px !important;
    }
    .card-header:first-child {
        border-radius: calc(1.25rem - -1px) calc(1.25rem - 3px) 0 0 !important;
    }
    .card-body.text-center.third-card-radius-bottom-20.bg-info.py-3 {
        border-radius: 0px 0px 24px 20px !important;
    }
    span.propag img {
        width: 80px !important;
    }

/* ========================================================== */
/* == ESTILO UNIFICADO PARA OS MODAIS (CANCELAMENTO E EMPRESARIAL) == */
/* ========================================================== */

/* 1. Ajusta o Modal para um visual limpo e maior */
#cancelamentoModal .modal-dialog,
#enterpriseModal .modal-dialog {
    max-width: 550px;
}
#cancelamentoModal .modal-content,
#enterpriseModal .modal-content {
    background-color: #ffffff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#cancelamentoModal .modal-header,
#enterpriseModal .modal-header {
    border-bottom: none;
}
#cancelamentoModal .modal-body,
#enterpriseModal .modal-body {
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    left: 0;
}
#cancelamentoModal .modal-title,
#enterpriseModal .modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2f8cfb;
    margin-bottom: 1.5rem;
}

/* 2. Estilo dos Campos de Formulário (usando .form-floating) */
#cancelamentoModal .form-floating .form-control,
#enterpriseModal .form-floating .form-control,
#cancelamentoModal .form-floating .form-select,
#enterpriseModal .form-floating .form-select {
    height: calc(3.8rem + 2px);
    border-radius: 10px;
    border-color: #dee2e6;
}

/* Efeito de Foco nos campos */
#cancelamentoModal .form-floating .form-control:focus,
#enterpriseModal .form-floating .form-control:focus,
#cancelamentoModal .form-floating .form-select:focus,
#enterpriseModal .form-floating .form-select:focus {
    border-color: #2f8cfb;
    box-shadow: 0 0 0 0.25rem rgba(47, 140, 251, 0.25);
}

/* Ajusta a cor do label quando ele flutua */
#cancelamentoModal .form-floating > .form-control:focus ~ label,
#enterpriseModal .form-floating > .form-control:focus ~ label,
#cancelamentoModal .form-floating > .form-select:focus ~ label,
#enterpriseModal .form-floating > .form-select:focus ~ label,
#cancelamentoModal .form-floating > .form-control:not(:placeholder-shown) ~ label,
#enterpriseModal .form-floating > .form-control:not(:placeholder-shown) ~ label,
#cancelamentoModal .form-floating > .form-select:not(:placeholder-shown) ~ label,
#enterpriseModal .form-floating > .form-select:not(:placeholder-shown) ~ label {
    color: #2f8cfb;
}

/* Centraliza o hCaptcha */
.h-captcha-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* 3. Estilo do Botão Final */
.btn-modal-moderno {
    width: 100%;
    height: 50px;
    background: #2f8cfb;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1em;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-modal-moderno:hover {
    background: #1e78d9;
    box-shadow: 0 4px 15px rgba(47, 140, 251, 0.4);
}
.btn-modal-moderno:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* ============================================= */
/* ===== NOVO PAINEL DE TEXTO DO BANNER (SOLUCAO.PHP) ===== */
/* ============================================= */

/* O painel com efeito de vidro */
.banner-overlay-panel {
    background: rgba(255, 255, 255, 0.15); /* Fundo branco com alta transparência */
    backdrop-filter: blur(10px); /* O efeito de vidro fosco */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    max-width: 600px; /* Largura máxima do painel */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

/* Tipografia dentro do painel */
.banner-overlay-panel h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Sombra no texto para legibilidade */
}

.banner-overlay-panel .lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1rem 0;
}

/* Lista de benefícios */
.banner-benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.banner-benefits-list li {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}
.banner-benefits-list i {
    color: #FFCA2C; /* Cor amarela para o ícone de check */
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Botão de Call-to-Action */
.btn-banner-cta {
    background-color: #FFCA2C;
    color: #2f8cfb;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-banner-cta:hover {
    background-color: #ffffff;
    color: #2f8cfb;
    transform: scale(1.05);
}

/* ============================================= */
/* ===== AJUSTE DE ALTURA DO BANNER (SOLUCAO.PHP) ===== */
/* ============================================= */

/* Seleciona o container do banner na página 'solucao.php' */
#outNav .carousel,
#outNav .carousel-item {
    height: 100vh;
    min-height: 750px;
}

/* Faz a imagem preencher o espaço sem distorcer (a parte mais importante) */
#outNav .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* Garante que a imagem cubra a área, cortando o excesso */
    object-position: center; /* Centraliza a imagem no corte */
}

.melhor-experiencia-section {
    padding-top: 2rem !important; /* ou menos, ajuste conforme necessário */
    margin-top: 0 !important;
}
.melhor-experiencia-section .container.pt-4 {
    padding-top: 1rem !important; /* diminui o espaço acima dos cards */
}

.section-title-wrapper {
    text-align: center;
    padding: 1rem 0 0.0rem 0;
    margin-bottom: 0rem !important; /* Diminui o espaço abaixo do título */
}

.py-5 {
    padding-top: 1rem !important; /* Diminui o espaço acima dos cards */
    padding-bottom: 1rem !important; /* Diminui o espaço abaixo dos cards */
}

@media screen and (max-width: 1440px) {
  #outNav .carousel,
  #outNav .carousel-item {
    height: auto !important;
    min-height: 500px !important;
    max-height: 100vh !important;
  }
  #outNav .carousel-item img {
    height: auto !important;
    width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }
}

html, body {
    overflow-x: hidden;
}


@media (max-width: 767px) {
    img.d-block.d-md-none.w-100 {
        margin: 0 !important;
        display: block;
    }

    /* se houver espaçamento extra no container do banner */
    #outNav,
    #outNav .position-relative,
    #outNav .carousel,
    #outNav .carousel-inner,
    #outNav .carousel-item {
        padding: 0 !important;
        margin: 0 !important;
    }

    /* opcional: reduz min-height para não empurrar conteúdo */
    #outNav .carousel,
    #outNav .carousel-item {
        min-height: auto !important;
        height: auto !important;
    }
}
