@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;700&display=swap');
/* Projeto: SAAE WebService - Desenvolvido por: Jefter Ruthes (https://ruthes.dev) */

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
}

.hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/water-pattern.png') repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn.primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: #fff;
}

/* Cards */
.hero-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    color: #fff;
}

.card-wide {
    grid-column: 1 / -1;
    margin-top: 0.75rem;
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
}

.card-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    margin: 0;
}

.card-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
}

.card-link:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-cards {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .floating-card {
        padding: 1rem;
    }

    .card-wide {
        grid-column: auto;
    
    }
}

/* Serviços Section */
.servicos {
    background: linear-gradient(135deg, #f8fafc 60%, #f1f7fa 100%);
    box-shadow: 0 2px 24px 0 rgba(0,0,0,0.04);
    position: relative;
    z-index: 1;
}

.servicos-header {
    text-align: center;
    margin-bottom: 3.2rem; /* Apenas para header, mantém afastamento do título */
    position: relative;

}

.section-header {
    text-align: center;
    margin-bottom: 3.2rem; /* Apenas para header, mantém afastamento do título */
    position: relative;

}

.diretoria-header {
    text-align: center;
    margin-bottom: 3.2rem; /* Apenas para header, mantém afastamento do título */
    position: relative;

}

.noticias-header {
    text-align: center;
    margin-bottom: 2.5rem; /* Apenas para header, mantém afastamento do título */
    position: relative;

}
.section-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--primary, #006494);
    letter-spacing: -0.5px;
    margin-bottom: 0.7rem;
    line-height: 1.1;
    display: inline-block;
    position: relative;
}
.section-subtitle {
    color: #4a5a6a;
    font-size: 1.18rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.93;
    letter-spacing: 0.01em;
}
@media (max-width: 700px) {
    .servicos {
        padding: 2.2rem 0 1.5rem 0;
    }
    .servicos-title {
        font-size: 2rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #006494;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* Contato Section */
.contact {
    padding: 5rem 0;
    background: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: #006494;
    margin: 0;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin: 0;
    color: #666;
}

.contact-details i {
    color: #006494;
    margin: 0;
    font-size: 1.2rem;
}

.contact-form {
    padding: 0;
    background: #f8f9fa;
    border-radius: 10px;
}

.form-group {
    margin: 0;
}

.form-group label {
    display: block;
    margin: 0;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #006494;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #005580;
    transform: translateY(-2px);
}

/* Serviços Section */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0;
}

.servico-card::before {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    left: auto;
    top: auto;
    transform: rotate(-18deg);
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 7.5rem;
    color: rgba(255,255,255,0.18);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    user-select: none;
}

.servico-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servico-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.servico-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

.servico-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contato Section */
.contato {
    padding: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
}

.contato .section-header h2,
.contato .section-header p {
    color: #fff;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contato-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contato-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.contato-card i {
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
}

.contato-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.contato-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Animações */
@keyframes waterFlow {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

/* Animações para elementos */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para formulário */
.error {
    border-color: #ff3860 !important;
    animation: shake 0.5s linear;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

/* NOVO DESIGN - Serviços Modernos */
.novo-servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 0;
    justify-items: center;
}

.novo-servico-card {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08), 0 1.5px 4px rgba(0,0,0,0.04);
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
    position: relative;
    min-width: 0;
    max-width: 350px;
    width: 100%;
    cursor: pointer;
}
.novo-servico-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.07);
    z-index: 2;
}

.novo-servico-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.novo-servico-icon .icon-bg {
    background: linear-gradient(135deg, var(--primary) 60%, var(--secondary) 100%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.novo-servico-icon i {
    color: #fff;
    font-size: 2.3rem;
}

.novo-servico-title {
    font-size: 1.45rem;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.novo-servico-desc {
    color: #555;
    font-size: 1.08rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 600px) {
    .novo-servico-card {
        padding: 2rem 1rem 1.5rem 1rem;
        max-width: 100%;
    }
    .novo-servicos-grid {
        gap: 1.2rem;
    }
}

/* --- SERVIÇOS COMPACTOS E COLORIDOS (Grid responsivo 4-2-1) --- */
.compacto-servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    padding: 0;
    justify-content: center;
    justify-items: center;
}
.compacto-servico-card {
    border-radius: 1rem;
    box-shadow: none;
    padding: 1.1rem 1.1rem 1rem 1.1rem;
    min-width: 0;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    transition: box-shadow 0.15s, transform 0.15s;
    position: relative;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}
.compacto-servico-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    transform: translateY(-2px) scale(1.025);
    z-index: 2;
}
.compacto-servico-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    margin: 0;
}
.compacto-servico-icon .icon-bg {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}
.compacto-servico-icon i {
    font-size: 1.3rem;
    color: #fff;
}
.compacto-servico-title {
    font-size: 1.13rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.10);
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}
.compacto-servico-desc {
    color: #fff;
    font-size: 1.01rem;
    line-height: 1.35;
    margin: 0;
    opacity: 0.93;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Cores específicas para cada serviço */
.servico-agua {
    background: linear-gradient(135deg, #2196f3 80%, #00cfff 100%);
}
.servico-agua .icon-bg { background: #1976d2; }
.servico-agua .compacto-servico-title,
.servico-agua .compacto-servico-desc { color: #fff; }

.servico-esgoto {
    background: linear-gradient(135deg, #43a047 80%, #aeea00 100%);
}
.servico-esgoto .icon-bg { background: #388e3c; }
.servico-esgoto .compacto-servico-title,
.servico-esgoto .compacto-servico-desc { color: #fff; }

.servico-manutencao {
    background: linear-gradient(135deg, #ff9800 80%, #ffd600 100%);
}
.servico-manutencao .icon-bg { background: #f57c00; }
.servico-manutencao .compacto-servico-title,
.servico-manutencao .compacto-servico-desc { color: #fff; }

.servico-atendimento {
    background: linear-gradient(135deg, #7c4dff 80%, #00bcd4 100%);
}
.servico-atendimento .icon-bg { background: #512da8; }
.servico-atendimento .compacto-servico-title,
.servico-atendimento .compacto-servico-desc { color: #fff; }

@media (max-width: 1100px) {
    .compacto-servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }
}
@media (max-width: 600px) {
    .compacto-servicos-grid {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    .compacto-servico-card {
        padding: 0.7rem 0.2rem 0.7rem 0.2rem;
        max-width: 100%;
    }
}

.icone-bg-card {
    position: absolute;
    bottom: 0.3rem;
    right: 0.3rem;
    font-size: 8.5rem;
    color: rgba(255,255,255,0.18);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    max-width: 95%;
    max-height: 95%;
    overflow: hidden;
}

/* REMOVER ESTILOS ANTIGOS DE .membro-card E AFINS */

/* --- HEADER DA DIRETORIA (reutiliza servicos-title/subtitle) --- */
.diretoria-header {
    text-align: center;
    margin-bottom: 3.2rem;
    position: relative;
}

/* --- CARDS DA DIRETORIA COMPACTOS --- */
.diretoria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin: 0;
    justify-items: center;
}
.compacto-membro-card {
    background: linear-gradient(135deg, #fafdff 60%, #e9f1fa 100%);
    border-radius: 1.3rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
    padding: 2.1rem 1.3rem 1.4rem 1.3rem;
    text-align: center;
    max-width: 260px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.22s, transform 0.22s;
    position: relative;
    border: 1.5px solid #e3eaf2;
    margin: 0;
}

.vip-diretor-geral {
    border: 2.5px solid #f7b801;
    box-shadow: 0 0 0 4px #fffbe9, 0 8px 32px rgba(247,184,1,0.11), 0 2px 16px rgba(0,0,0,0.08);
    position: relative;
    background: linear-gradient(135deg, #fffbe9 70%, #f7e4b8 100%);
}

.vip-diretor-geral .compacto-membro-cargo {
    background: #f7b801;
    color: #fff;
    border: 2px solid #fffbe9;
    box-shadow: 0 2px 8px rgba(247,184,1,0.13);
    border-radius: 1em;
    padding: 0.22em 0.85em;
    margin: 0;
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 1.01rem;
    font-weight: 400 !important;
    letter-spacing: 0.01em;
    text-transform: none;
}

.compacto-membro-card:hover {
    box-shadow: 0 10px 32px rgba(0,0,0,0.13);
    transform: translateY(-6px) scale(1.045);
    border-color: var(--primary, #006494);
    z-index: 3;
}
.compacto-membro-foto {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    border: 3px solid #fff;
    background: #f3fafd;
}
.compacto-membro-nome {
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--primary, #006494);
    margin: 0;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 0 #fff;
}
.compacto-membro-cargo {
    color: #4a5a6a;
    font-size: 1.01rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.01em;
    background: #f1f5fa;
    border-radius: 0.7em;
    padding: 0.22em 0.85em;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    font-family: 'Noto Sans', Arial, sans-serif;
    font-weight: 400 !important;
}

.compacto-membro-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    transform: translateY(-3px) scale(1.03);
    z-index: 2;
}
.compacto-membro-foto {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.compacto-membro-nome {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--primary, #006494);
    margin: 0;
    letter-spacing: 0.01em;
}
.compacto-membro-cargo {
    color: #4a5a6a;
    font-size: 0.98rem;
    margin: 0;
    font-weight: 500;
}
.compacto-membro-email, .compacto-membro-telefone {
    color: #666;
    font-size: 0.93rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}
.compacto-membro-email i, .compacto-membro-telefone i {
    color: var(--primary, #006494);
    font-size: 1rem;
}
@media (max-width: 700px) {
    .diretoria-header {
        margin-bottom: 1.5rem;
    }
    .diretoria-grid {
        gap: 0.7rem;
    }
    .compacto-membro-card {
        max-width: 100%;
        padding: 1rem 0.5rem 0.8rem 0.5rem;
    }
    .compacto-membro-foto {
        width: 54px;
        height: 54px;
    }
}

/* --- SEÇÃO DE NOTÍCIAS --- */
.noticias {
    background: #fff;
}


.noticias-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}
.noticias-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary, #006494);
    margin: 0;
    line-height: 1.1;
}

.noticias-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 2.2rem;
    align-items: stretch;
}
.noticia-destaque {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 0;
}
.noticia-destaque::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 60%;
    background: linear-gradient(0deg, rgba(20,30,40,0.82) 60%, rgba(20,30,40,0.0) 100%);
    z-index: 1;
    pointer-events: none;
}
.noticia-destaque-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
}
.noticia-destaque-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    margin-bottom: 0.7rem;
    line-height: 1.2;
    text-decoration: none !important;
    display: block;
    transition: color 0.2s;
}
.noticia-destaque:hover .noticia-destaque-title {
    color: #ffe066;
    text-decoration: none !important;
}
.noticia-destaque-excerpt {
    color: #e3eaf2;
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
    line-height: 1.5;
    text-shadow: 0 1px 6px rgba(0,0,0,0.13);
}
.noticia-destaque-date {
    color: #b6c2d2;
    font-size: 0.98rem;
    margin-top: 0.5rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.13);
}
.noticia-destaque-badge {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    background: var(--primary, #006494);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 4px 15px 4px 9px;
    border-radius: 1.1em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    z-index: 3;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.32em;
    line-height: 1.13;
    min-height: 20px;
    min-width: 0;
    overflow: hidden;
}
.badge-icon {
    display: flex;
    align-items: center;
    margin-right: 0.2em;
    animation: star-spin 3s linear infinite;
}
.badge-icon svg {
    width: 1em;
    height: 1em;
    display: block;
}

@keyframes star-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- META AUTOR + DATA --- */
.noticia-destaque-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7em;
    font-size: 0.99rem;
    color: #e3eaf2;
    margin-bottom: 0.5rem;
    opacity: 0.93;
    font-weight: 500;
}
.noticia-destaque-autor {
    color: #e3eaf2;
}
.noticia-destaque-date {
    color: #b6c2d2;
    font-size: 0.99rem;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.13);
}

/* --- TÍTULO SEM SUBLINHADO --- */
.noticia-destaque-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    margin-bottom: 0.7rem;
    line-height: 1.2;
    text-decoration: none !important;
    display: block;
    transition: color 0.2s;
}
.noticia-destaque-title:hover {
    color: #ffe066;
    text-decoration: none !important;
}

/* ==========================================================================
   Container Padrão das Seções Principais
   ========================================================================== */
.section-container {
    width: 100%;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    margin-bottom: 15px;
}

/* Remove o margin-bottom do último container para não criar espaço extra no rodapé */
.site-main .section-container:last-of-type {
    margin-bottom: 0;
}

/* --- AJUSTES RESPONSIVOS --- */
@media (max-width: 900px) {
    .noticia-destaque-badge {
        top: 0.7rem;
        right: 0.7rem;
        font-size: 0.89rem;
        padding: 0.32em 0.9em 0.32em 0.7em;
    }
    .noticia-destaque-meta {
        font-size: 0.93rem;
    }
}

.noticias-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    justify-content: flex-start;
}
.noticia-list-item {
    background: #f8fafc;
    border-radius: 0.8rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.7rem 0.7rem 0.7rem 0.7rem;
    min-height: 80px;
}
.noticia-list-thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.noticia-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.noticia-list-title {
    font-size: 1.01rem;
    font-weight: 600;
    color: var(--primary, #006494);
    text-decoration: none;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}
.noticia-list-title:hover {
    text-decoration: none;
    color: var(--secondary, #ffe066);
}
.noticia-list-date, .noticia-list-meta-date, .noticia-list-meta-autor {
    color: #b6bfc9;
    font-size: 0.89rem;
    transition: color 0.2s;
}
.noticia-list-meta-date:hover, .noticia-list-meta-autor:hover {
    color: #b6bfc9;
    text-decoration: none;
    cursor: default;
}
.noticia-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: #f8fafc;
    border-radius: 0.8rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    padding: 0.7rem 0.7rem 0.7rem 0.7rem;
    min-height: 80px;
    transition: box-shadow 0.28s cubic-bezier(.4,0,.2,1), transform 0.28s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
}
.noticia-list-item:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
    transform: scale(1.025);
    text-decoration: none;
}
.noticia-list-item:hover .noticia-list-title {
    color: var(--secondary, #ffe066);
    text-decoration: none;
}
.noticia-list-title {
    font-size: 1.01rem;
    font-weight: 600;
    color: var(--primary, #006494);
    text-decoration: none;
    margin-bottom: 0.2rem;
    line-height: 1.2;
    transition: color 0.22s;
}
.noticia-list-title:hover {
    color: var(--secondary, #ffe066);
    text-decoration: none;
}

@media (max-width: 900px) {
    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .noticia-destaque {
        min-height: 0;
    }
} 