/* ========================================
   VARIÁVEIS DE COR - PALETA AZUL PROFISSIONAL
   ======================================== */
:root {
    --primary-blue: #0052CC;
    --secondary-blue: #003D99;
    --light-blue: #E8F0FE;
    --accent-blue: #1E88E5;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --text-dark: #333333;
    --text-light: #666666;
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
}

/* ========================================
   RESET E ESTILOS GLOBAIS
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER E NAVEGAÇÃO
   ======================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -7px);
}

/* ========================================
   WHATSAPP FLUTUANTE
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    margin-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--light-blue), #f0f7ff);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.1), transparent);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
    animation: slideInLeft 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-video {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hero-video {
    width: 100%;
    max-width: 350px;
}

.hero-video video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 82, 204, 0.2);
    animation: slideInRight 0.8s ease;
}

/* ========================================
   ALERTA PULSANTE
   ======================================== */
.hero-alert {
    background: linear-gradient(135deg, #FF6B6B, #FF5252);
    border-radius: 12px;
    padding: 25px;
    max-width: 350px;
    width: 100%;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    text-align: center;
    animation: slideInRight 0.8s ease 0.2s both;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.alert-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: pulse-alert 1.5s ease-in-out infinite;
}

.alert-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.alert-content p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 500;
}

.alert-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid white;
}

.alert-phone:hover {
    background: white;
    color: #FF6B6B;
    transform: scale(1.05);
}

.pulse-number {
    animation: pulse-number 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes pulse-alert {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes pulse-number {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        opacity: 0.7;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BOTÕES
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 82, 204, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.btn-maps,
.btn-waze {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-gray);
    margin-right: 10px;
}

.btn-maps:hover,
.btn-waze:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ========================================
   SEÇÕES
   ======================================== */
section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SEÇÃO SOBRE
   ======================================== */
.sobre {
    background: #ffffff;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.sobre-text h4 {
    font-size: 1.3rem;
    color: var(--secondary-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.sobre-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    padding: 10px;
    border-left: 3px solid var(--primary-blue);
    padding-left: 15px;
}

.features-list i {
    color: var(--primary-blue);
    font-size: 1.3rem;
    min-width: 25px;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.15);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

/* ========================================
   SEÇÃO LOCALIZAÇÃO
   ======================================== */
.localizacao {
    background: linear-gradient(135deg, var(--light-blue), #f0f7ff);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.mapa-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.15);
}

.mapa {
    width: 100%;
    height: 400px;
}

.mapa iframe {
    border-radius: 12px;
}

.localizacao-info h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.localizacao-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.localizacao-info i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ========================================
   SEÇÃO ACESSO
   ======================================== */
.acesso {
    background: #ffffff;
}

.acesso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.acesso-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
    animation: fadeInUp 0.8s ease;
}

.acesso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.15);
}

.acesso-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.acesso-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.acesso-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ========================================
   SEÇÃO NOTÍCIAS
   ======================================== */
.noticias {
    background: linear-gradient(135deg, var(--light-blue), #f0f7ff);
}

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

.noticia-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.noticia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.15);
}

.noticia-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.noticia-card:hover .noticia-img {
    transform: scale(1.05);
}

.noticia-content {
    padding: 25px;
}

.noticia-date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.noticia-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.noticia-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.noticia-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.noticia-link:hover {
    gap: 10px;
}

/* ========================================
   SEÇÃO DIRETORIA
   ======================================== */
.diretoria {
    background: #ffffff;
}

.diretoria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.diretor-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.diretor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.15);
}

.diretor-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.diretor-nome {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.diretor-cargo {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.diretor-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}



/* ========================================
   SEÇÃO CONTATO
   ======================================== */
.contato {
    background: #ffffff;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contato-info {
    display: grid;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-blue);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: linear-gradient(135deg, var(--light-blue), #e0e8ff);
    transform: translateX(5px);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    min-width: 40px;
}

.info-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-item p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.info-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--light-blue);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    background: white;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.brcondos-link {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid white;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.brcondos-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-left-color: #FFD700;
}

.brcondos-link strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.brcondos-link span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.95rem;
}

.footer-bottom i {
    color: #FF6B6B;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-right {
        flex: 1;
        width: 100%;
    }

    .hero-video {
        margin-top: 30px;
        max-width: 100%;
    }

    .hero-alert {
        max-width: 100%;
    }

    .sobre-content,
    .localizacao-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .acesso-grid,
    .noticias-grid,
    .diretoria-grid {
        grid-template-columns: 1fr;
    }

    .nav-buttons {
        flex-direction: column;
    }

    .btn-maps,
    .btn-waze {
        margin-right: 0;
        width: 100%;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    section {
        padding: 50px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        gap: 8px;
    }

    .logo {
        height: 35px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 25px;
    }

    .acesso-card,
    .noticia-card,
    .diretor-card {
        padding: 25px 20px;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .footer-section h4 {
        font-size: 1rem;
    }
}

/* ========================================
   ANIMAÇÕES E TRANSIÇÕES
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   CLASSES UTILITÁRIAS
   ======================================== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.hidden {
    display: none;
}

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ========================================
   SUBMENUS (DROPDOWN)
   ======================================== */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .nav-link i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid var(--border-gray);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding-left: 25px;
}

.dropdown-menu hr {
    border: 0;
    border-top: 1px solid var(--border-gray);
    margin: 5px 0;
}

/* ========================================
   MODAL DE DOWNLOAD
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--error);
}

.modal h2 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.modal p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #3d8b40);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

/* Ajustes Responsivos para Mobile Menu */
@media screen and (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 20px;
        display: none; /* Escondido por padrão no mobile */
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-item.dropdown .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* ========================================
   AJUSTES DE NOTÍCIAS
   ======================================== */
.noticia-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.noticia-date i {
    color: var(--primary-blue);
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.85rem;
}

.noticia-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.noticia-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.noticia-excerpt {
    flex-grow: 1;
}

/* Ajuste de tamanho da logo no rodapé */
.footer-logo img {
    max-width: 150px; /* Tamanho proporcional */
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1); /* Opcional: torna a logo branca para melhor contraste no fundo azul */
}
