/* --------------------------
   Geral
--------------------------- */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #212529;
}

/* --------------------------
   Títulos Globais
--------------------------- */
h1, h2, h3, h4, h5, h6 {
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    color: #333;
}

/* --------------------------
   Título Principal
--------------------------- */
.titulo-principal {
    text-align: center !important;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* --------------------------
   Links dentro do conteúdo
--------------------------- */
p a {
    color: #007BFF;           /* Azul padrão, ajuste se quiser */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

p a:hover, p a:focus {
    text-decoration: underline;
    color: #0056b3;
    outline: none;
}

/* --------------------------
   Banner
--------------------------- */
.banner-container {
    margin-top: 0px !important;   /* Espaço acima do banner */
    margin-bottom: 0px !important; /* Espaço abaixo do banner */
    text-align: center;
}

.banner-container img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .banner-container img {
        max-height: 250px;
    }
}

/* --------------------------
   Navbar
--------------------------- */
nav.navbar {
    margin-top: 10px;
    padding: 10px 0;
}

.nav-link.fw-bold {
    font-weight: bold;
    padding: 8px 12px;
    color: #ffffff !important;
    transition: background-color 0.2s ease;
}

.nav-link.fw-bold:hover {
    background-color: #495057;
    border-radius: 5px;
}

/* --------------------------
   Dropdown (Desktop)
--------------------------- */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }

    .dropdown-menu {
        transition: opacity 0.3s ease;
        opacity: 0;
        visibility: hidden;
        background-color: #6c757d !important;
        border-radius: 0.25rem;
        min-width: 200px;
    }
}

.dropdown-item {
    padding: 10px 20px;
    color: white !important;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #5a6268;
}

/* --------------------------
   Conteúdo principal
--------------------------- */
main.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* --------------------------
   Rodapé
--------------------------- */
footer {
    background-color: #212529;
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    footer {
        font-size: 0.8rem;
    }
}
.titulo-duas-linhas {
    margin-top: 60px;    /* Espaço acima do h2 */
    margin-bottom: 40px; /* Espaço abaixo do h2 */
    text-align: center;
    font-weight: bold;
    color: white
    ;
}
.post-box {
    background-color: #F4C430;  /* Cor açafrão */
    border-radius: 8px;
    color: #333;  /* Cor do texto, pode ajustar */
    text-align: center;
    font-weight: bold;
    /* Espaçamento interno */
    padding-top: 20px;
    padding-bottom: 20px;
    /* margem inferior para separar do conteúdo abaixo */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* --------------------------
   Página "Sobre"
--------------------------- */

.sobre-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.sobre-titulo {
    font-size: 28px;
    color: #004d40;
    margin-bottom: 25px;
}

.sobre-imagem-container {
    text-align: center;
    margin-bottom: 20px;
}

.sobre-imagem {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.sobre-texto {
    text-align: justify;
    font-size: 1.1em;
    line-height: 1.6;
    color: #212529;
}
.img-centralizada {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.whatsapp-float {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #25d366; /* Verde WhatsApp */
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
}

@media (max-width: 576px) {
    .whatsapp-float {
        font-size: 14px;
        padding: 10px 14px;
        top: 10px;
        right: 10px;
    }
}
