/* Estilos Gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), 
                url('../images/fundo.jfif') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

.container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Header */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 0;
}

.logo-container {
    margin-bottom: 15px;
}

.logo-img {
    width: 180px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.header-title {
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Ações Urgentes */
.acao-urgente {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.acao {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.acao:hover {
    transform: scale(1.05);
}

.acao h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #007bff;
}

.acao p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Botões */
button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #218838;
}

/* Sobre Nós */
.about-section {
    padding: 80px 20px;
    background-color: #f4f4f4;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.about-section h2 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #007bff;
    font-weight: 400;
}

.history-content {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.history-content .icon {
    font-size: 2em;
    color: #007bff;
}

.history-text {
    flex: 1;
}

.history-text h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.history-text p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #1c1c1c;
    color: #adb5bd;
    padding: 40px 20px;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: left;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.footer-column p,
.footer-column a {
    color: #adb5bd;
    font-size: 15px;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
    text-align: center;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column i {
    margin-right: 8px;
}

/* Redes sociais em linha */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a {
    color: #adb5bd;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffffff;
}

/* Responsivo */
@media (max-width: 768px) {
    .acao-urgente {
        flex-direction: column;
        align-items: center;
    }

    .acao {
        width: 90%;
    }

    .history-content {
        flex-direction: column;
        text-align: center;
    }

    .history-content .icon {
        margin-bottom: 15px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }
}


