/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}

/* Barra Superior */
.top-bar {
    background-color: #0c054f;
    color: white;
    padding: 5px 0;
    font-size: 12px;
}

/* Barra Superior 2 */
.top-bar2 {
    background-color: #ffffff;
    color: white;
    padding: 5px 0;
    font-size: 12px;
    /* border-bottom: 1px solid #0c054f;*/
    text-align: center; /* Centraliza o conteúdo */
    display: inline; /* Ajusta ao tamanho do conteúdo */

}

.top-bar .location select {
    border: none;
    background: transparent;
    color: white;
    font-weight: bold;
}

.top-bar .links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

/* Navbar */
.navbar {
    border-bottom: 2px solid #ddd;
}

.navbar-nav .nav-link {
    color: #0c054f;
    font-weight: bold;
    margin: 0 10px;    
    font-size: 14px; /* Ajuste conforme necessário */    
}

.navbar-nav .nav-link:hover {
    color: #E63946;
}

.social-icons a {
    color: #0c054f;
    font-size: 16px;
    margin: 0 8px;
}

.contact-info {
    margin-left: 20px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    
}

.btn-success {
    background-color: #0c054f;
    border: none;
    margin-left: 10px;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* .texto-banner {
    
    text-align: left;
} */

/* Estilos para o carrossel de banner */
.banner-carousel {
    margin-bottom: 30px;
}

.banner-carousel .carousel-item {
    height: 600px;
}

.banner-carousel .banner {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.banner-carousel .texto-banner {
    background-color: rgba(30, 27, 27, 0.147);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
}

.banner-carousel h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}

.banner-carousel p {
    font-size: 18px;
    color: white;
}

/* Indicadores personalizados */
.banner-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.banner-carousel .carousel-indicators button.active {
    background-color: none;
}

/* Controles personalizados */
.banner-carousel .carousel-control-prev,
.banner-carousel .carousel-control-next {
    width: 5%;
    
}


.banner-carousel .carousel-control-prev-icon,
.banner-carousel .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: transparent;
    border-radius: 50%;
    background-size: 60%;
}

/* Remove o hover dos controles do carrossel */
.banner-carousel .carousel-control-prev:hover,
.banner-carousel .carousel-control-next:hover {
    background-color: transparent;
}

.carousel-item img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: top; /* mostra o topo da imagem */
}

/* .banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
} */

.banner-link .banner {
    cursor: pointer;
}

@media (max-width: 768px) {
    .carousel-item {
    height: auto !important;
}

    .carousel-item img {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
}
}



.banner {
    background: url('../img/banner1.jpeg') no-repeat center center/cover;
    text-align: center;
    color: white;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px; /* Ajuste conforme necessário */
}


.banner h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.planos {
    text-align: center;
    padding: 50px 0;
}

.planos .plano {
    background: white;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    margin: 10px;
    width: 250px;
    height: 550px; /* Define um tamanho fixo */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.planos h3 {
    color: #E63946;
    margin-bottom: 10px;
    text-align: center;
    
}

.planos p {
    font-size: 14px;
    margin-bottom: 10px;
    
}

/* Personalização dos ícones e valores */
.planos .text-primary {
    color: #0c054f !important; /* Azul escuro do seu tema */
}

.planos .text-danger {
    color: #E63946 !important; /* Vermelho do seu tema */
}

.text-azul {
    color: #0c054f !important; /*  Azul escur */
}

/* Opcional: ajuste o tamanho dos ícones */
.planos .fa-circle-check {
    font-size: 1.1em;
    margin-right: 5px;
}

/* Opcional: destaque para o valor mensal */
.planos .fs-1.fw-bold {
    font-size: 2.5rem !important;
    letter-spacing: -1px;
}

.bg-planos img,
.bg-banner img {
    max-width: 100%;     /* nunca ultrapassa o tamanho do contêiner */
    height: auto;        /* mantém a proporção da imagem */
    border-radius: 10px; /* opcional, deixa cantos arredondados */
}

.bg-planos .col-md-5 img {
    max-height: 350px;   /* altura máxima para evitar imagem muito grande */
    object-fit: cover;   /* mantém o corte proporcional sem distorcer */
}

button {
    background: #0c054f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #E63946;
}

.btn-outline-success {
    background: white;
    color: #E63946;
}

.btn-success:hover {
    background: #E63946;
}

.btn-warning:hover {
    background: #E63946;
}

.btn-outline-success:hover {
    background: #0c054f;
}

.auto-atendimento {
    background: #f1f1f1;
    text-align: center;
    padding: 20px 0;
}

.auto-atendimento h2 {
    font-size: 20px;
    font-weight: bold;
    color: #313131;
    margin-bottom: 15px;
    
}

.botoes-auto-atendimento {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.botao {
    background: #0c054f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.botao i {
    font-size: 16px;
}

.botao:hover {
    background: #E63946;
}

.text-success {
    color: #008000; /* Verde padrão do Bootstrap */
}

.text-success-price {
    color: #0c054f; /* Verde padrão do Bootstrap */
}

.mb-1 {
    margin-bottom: 0.25rem; /* Espaçamento inferior pequeno */
    color: #0c054f;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.bg-empresa {
    background-color: #0c054f; /* Substitua pela cor desejada */
    padding: 1px 0;
}


.bg-empresa .btn-outline-light {
    border: 2px solid #fff;
    padding: 10px 20px;
    transition: 0.3s;
}

.bg-empresa .btn-outline-light:hover {
    background-color: #fff;
    color: #0c054f;
}

.bg-empresa .col-md-6 {
    background-image: url('../img/empresa.jpg');
    background-size: cover;
    min-height: 350px;
}

.icone-beneficio img {
    max-width: 50px; /* Ajuste conforme necessário */
}

.icone-beneficio p {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

img.svg-icon {
    filter: brightness(0) saturate(100%) invert(9%) sepia(90%) saturate(3000%) hue-rotate(240deg) brightness(90%) contrast(90%);
}

img.svg-icon {
    background-color: #0c054f;
    mask-image: url('../img/sinal.svg');
    -webkit-mask-image: url('../img/sinal.svg');
}

.img-fluid {
    width: 60px; /* Ajuste o tamanho conforme necessário */
    height: 60px;
}

footer {
    background-color: #0c054f;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-section {
    background: #0c054f;
    color: #fff;
    padding: 60px 0;
    position: relative;
}

.footer-logo {
    height: 70px;
}

.footer-desc {
    opacity: 0.85;
    font-size: 15px;
    line-height: 1.5;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #13f1ff;
    display: block;
    margin-top: 6px;
    border-radius: 4px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: #ffffffc7;
    text-decoration: none;
    transition: 0.3s;
}

.footer-list a:hover {
    color: #13f1ff;
    padding-left: 5px;
}

.footer-social a {
    color: #fff;
    font-size: 22px;
    margin-right: 15px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #13f1ff;
    transform: scale(1.2);
}

.footer-divider {
    border-color: #ffffff33;
    margin-top: 40px;
}

.footer-copy {
    font-size: 14px;
    opacity: 0.7;
}

/* BOTÃO VOLTAR AO TOPO */
.btn-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: #13f1ff;
    color: #0c054f;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
}

.btn-top:hover {
    background: #12d5e0;
    transform: scale(1.1);
}

.hero-qs {
    background: linear-gradient(rgba(12,5,79,0.7), rgba(12,5,79,0.7)),
                url("img/bg-fibra.jpg") center/cover no-repeat;
    padding: 120px 0;
    color: white;
    text-align: center;
}
.hero-qs h1 {
    font-size: 52px;
    font-weight: 700;
}

.card-info {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.card-info:hover {
    transform: translateY(-10px);
}

.card-info i {
    font-size: 50px;
    color: #0c054f;
    margin-bottom: 15px;
}

.timeline {
    border-left: 3px solid #0c054f;
    padding-left: 25px;
}
.timeline-item {
    margin-bottom: 35px;
}
.timeline-item h5 {
    color: #0c054f;
    font-weight: 700;
}

.contact-hero {
    background: linear-gradient(90deg, #0c054f, #271a9f);
    padding: 100px 0;
    color: white;
    text-align: center;
}
.contact-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.info-box {
    background: #0c054f;
    color: white;
    padding: 30px;
    border-radius: 15px;
}
.info-box i {
    font-size: 35px;
    margin-bottom: 10px;
}

