/* =========================================
   Página de Contato
   ========================================= */

/* --- Banner e Slideshow --- */
.banner-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#anuncios-visite-container {
    position: relative;
    width: 100%;
    min-height: 150px;
    margin: 15px 0;
}

#anuncios-visite-container .anuncio-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: center;
}

#anuncios-visite-container .anuncio-slide.active {
    opacity: 1;
}

#anuncios-visite-container .anuncio-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* --- Layout e Espaçamento --- */
.container {
    max-width: 1280px;
}

.page-content {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* --- Tipografia --- */
.subtitulo-destaque {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
    margin: 40px 0;
    padding: 0;
    text-transform: none;
}

.texto-corpo {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #555555;
    line-height: 1.7;
    text-align: left;
}

.titulo-duas-cores {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin: 40px 0;
}

.titulo-duas-cores span {
    display: block;
}

.titulo-duas-cores .linha-clara {
    font-size: 42px;
    color: #888888;
}

.titulo-duas-cores .linha-escura {
    font-size: 52px;
    color: #333333;
}

.section-subo-title {
    font-size: 37px;
}

.titulo-duass-cores .linha-clara {
    font-size: 42px;
    color: #888888;
}

/* --- Mensagens de Feedback do Formulário --- */
.form-success {
    padding: 1rem;
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-error {
    padding: 1rem;
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* --- Ajustes da Seção FAQ --- */
.faq-section {
    padding-top: 0px;
    padding-bottom: 70px;
}

/* --- Responsividade --- */
@media (max-width: 991px) {
    .faq-section {
        padding-top: 0px;
        padding-bottom: 26px;
    }
}

@media (max-width: 767px) {
    .page-content {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .subtitulo-destaque {
        font-size: 36px;
    }

    .texto-corpo {
        font-size: 16px;
    }

    .titulo-duas-cores .linha-clara {
        font-size: 32px;
    }

    .titulo-duas-cores .linha-escura {
        font-size: 42px;
    }

    #anuncios-visite-container {
        margin: 78px 0;
    }
}