



/* Garantir que o container ocupe a tela inteira */
.w-full {
    width: 100%;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.line-through {
    text-decoration: line-through;
}

@media (min-width: 1024px) {
    .lg\:w-1\/3 {
        width: calc(33.333% - 1rem); /* Ajuste para colunas de 1/3 em telas grandes */
    }
}

/* Centralizar e limitar a largura para telas grandes */
.max-w-screen-xl {
    max-width: 1280px; /* Limite de largura a 1280px para telas grandes */
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Estilos para dispositivos móveis e desktops */
@media (min-width: 640px) {
    .sm\:w-1\/2 {
        width: calc(95% - 10rem); /* 2 colunas em dispositivos móveis pequenos */
    }
}

@media (min-width: 1024px) {
    .lg\:w-1\/3 {
        width: calc(27% - 1rem); /* 3 colunas em desktops */
    }
}

/* Estilo do rodapé */
footer {
    background-color: #0D3C61; /* Cor de fundo principal */
    color: #ffffff; /* Texto branco */
    padding: 2.5rem 1rem; /* Espaçamento superior/inferior e lateral */
    text-align: center;
    font-family: "Lato", sans-serif;
}

/* Estilos para o texto central */
footer .phone-link {
    color: white;
    font-size: 0.875rem;
    line-height: 1.25rem;
    display: inline-flex;
    align-items: center;
}

footer .phone-link a {
    color: white;
    text-decoration: none;
}

footer .phone-link:hover {
    font-weight: bold;
}

footer .phone-link img {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

/* Links de navegação do rodapé */
footer .footer-menu a {
    color: #ffffff;
    font-size: 0.875rem;
    padding: 0 0.5rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

footer .footer-menu a:hover {
    color: #CCCCCC; /* Cor do link ao passar o mouse */
}

/* Estilos gerais para a seção topo-8 */
section.topo-8 {
    padding: 3rem 0;
    background-color: #f8f9fa; /* Cor de fundo clara */
}

.titulo-principal {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.texto-principal {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.titulo-como-comrpar {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0066cc; /* Cor do título */
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.como-comprar {
    font-size: 3rem;
    color: #0066cc; /* Cor dos ícones */
    margin-bottom: 1rem;
}

.esp-top {
    margin-top: 2rem;
}

.esp-topo {
    margin-top: 3rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .titulo-principal {
        font-size: 1.75rem;
    }

    .titulo-como-comrpar {
        font-size: 1.25rem;
    }

    .como-comprar {
        font-size: 2.5rem;
    }

    .texto-principal {
        font-size: 1rem;
    }
}





 /* Definir cores brancas para todos os textos e links */
            .phone-link, .phone-link a, .footer-menu a {
                color: white;
            }

            .phone-link a:hover, .footer-menu a:hover {
                font-weight: bold;
                color: white;
            }

         

            .cta-button:hover {
                background-color: #004d00;
            }

            /* Responsividade para dispositivos menores */
            @media (max-width: 600px) {
                .cta-button {
                    font-size: 1.25rem;
                    padding: 8px 16px;
                    width: 100%;
                }
            