/* ===== ROOT & RESET ===== */
:root {
    --cor-azul-claro: #06A5E7;
    --cor-vermelho: #DC363F;
    --cor-azul-escuro: #2957A4;
    --cor-fundo: #f8f9fa;
    --cor-texto: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, a:link, a:visited {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
}

/* ===== HEADER ===== */
.site-header {
    background-color: #ffffff;
    padding: 10px 20px;
    border-bottom: 3px solid var(--cor-azul-claro); 
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 10;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 75px; 
    width: auto;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--cor-azul-escuro);
}

.contact-item-header {
    display: flex;
    align-items: center;
    gap: 8px; 
    font-weight: 500;
    font-size: 16px;
}

.header-contact a,
.footer-contact-info a.contact-item {
    text-decoration: none;   
    color: inherit;          
    transition: opacity 0.3s;   /
}

.header-contact a:hover,
.footer-contact-info a.contact-item:hover {
    opacity: 0.7;               
    cursor: pointer;
}

/* ===== MAIN ===== */
.site-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.comunicado-img {
    max-width: 750px;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    padding: 8px;
    border: 1px solid rgba(220, 54, 63, 0.15); 
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03);
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #06003a; 
    color: #ffffff;
    padding: 60px 20px 24px;
    border-top: 4px solid var(--cor-vermelho); 
    font-size: 15px;
    font-weight: 300;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo {
    max-width: 160px;
    opacity: 0.95;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
}

.contact-item {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.social-links {
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icon:hover {
    background-color: var(--cor-azul-claro);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
        justify-content: center;
    }
    
    .site-main {
        padding: 40px 16px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .footer-contact-info {
        align-items: center;
    }

    .contact-item {
        align-items: center;
        flex-direction: column;
        gap: 8px;
    }

    .contact-item svg {
        margin-top: 0;
    }
}