:root {
    --color-white: #ffffff;
    --color-blue: #2563eb;
    --color-blue-light: #60a5fa;
    --color-yellow: #fbbf24;
    --color-yellow-light: #fde047;
    --color-red: #dc2626;
    --color-red-dark: #991b1b;
    --color-dark: #1e293b;
    --color-dark-secondary: #334155;
    --color-dark-tertiary: #475569;
    --color-light-bg: #f8fafc;
    --color-light-secondary: #e2e8f0;
    --color-gray: #64748b;
    --color-gray-light: #cbd5e1;
    --color-gray-dark: #475569;
    --font-family: 'Lexend', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(251, 191, 36, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--color-light-bg);
    color: var(--color-gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1003;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    min-height: 60px;
}

/* Logo Wrapper - Flutuante */
.logo-wrapper {
    position: absolute;
    left: 0;
    top: 120%;
    transform: translateY(-50%);
    z-index: 1001;
}

.header-logo {
    height: 160px;
    width: auto;
    border-radius: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 50px rgba(251, 191, 36, 0.4);
    transition: all 0.4s ease;
    border: 0px solid rgba(255, 255, 255, 0.95);
    background: var(--color-white);
    padding: 0px;
    display: block;
}

.header-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 70px rgba(251, 191, 36, 0.6);
}

/* Hide mobile nav logo on desktop */
.nav-logo-mobile {
    display: none;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: flex-end;
    padding: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 1.6rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-yellow-light));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav a:hover {
    color: var(--color-yellow);
}

.nav a:hover::before {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: .3rem;
    cursor: pointer;
}

.nav-dropdown-arrow {
    transition: transform .25s ease;
    flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + .5rem);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 12px;
    padding: .5rem 0;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    z-index: 1010;
    border: 1px solid rgba(255,255,255,.12);
    list-style: none;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: stretch !important;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #1e3a8a;
    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu li {
    padding: 0;
    border-bottom: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: .65rem 1.5rem;
    font-size: .85rem;
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,.1);
    color: var(--color-yellow);
    padding-left: 1.8rem;
}

.nav-dropdown-menu a::before {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-yellow-light));
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--color-dark);
    text-align: center;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-red));
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

.about-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 3rem 3rem 2.5rem;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-card-title {
    color: var(--color-blue) !important;
    margin-bottom: 1rem !important;
}

.about-subtitle {
    color: var(--color-yellow) !important;
}

.about-subtitle::before,
.about-subtitle::after {
    background: var(--color-yellow) !important;
}

.section-divider-dark {
    background: var(--color-dark);
    padding: 0;
}

.divider-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-red));
    margin: 0 auto;
    border-radius: 2px;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: var(--color-white);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--color-blue);
    font-weight: 700;
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-red));
    border-radius: 2px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border-left: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::after {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-left-color: var(--color-yellow);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(251, 191, 36, 0.08);
    line-height: 1;
    z-index: 0;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    color: var(--color-blue);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.card:hover .card-icon {
    color: var(--color-yellow);
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    color: var(--color-dark);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--color-gray-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-top: 4rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.brasao {
    max-width: 220px;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
    border-radius: 20px;
}

.brasao:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 30px rgba(245, 158, 11, 0.4));
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--color-white);
    padding: 1.3rem 2.8rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-red);
    transition: left 0.4s ease;
    z-index: 0;
}

.whatsapp-btn:hover::before {
    left: 0;
}

.whatsapp-btn svg,
.whatsapp-btn span {
    position: relative;
    z-index: 1;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    background-color: var(--color-dark-secondary);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--color-yellow);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--color-gray);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--color-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray);
}

/* Homepage Header - Desktop Only */
@media (min-width: 769px) {
    .home .header {
        height: 210px;
    }

    .home .header-content {
        height: 210px;
        min-height: 210px;
        justify-content: flex-end;
        align-items: center;
    }

    .home .logo-wrapper {
        position: absolute;
        left: 0;
        top: 40%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .home .header-logo {
        height: 140px;
    }

    .home .nav {
        display: flex;
        align-items: center;
        height: 100%;
        margin-left: 180px;
    }

    .home .nav ul {
        display: flex;
        align-items: center;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .header-logo {
        height: 100px;
    }
    
    .nav ul {
        gap: 2rem;
    }
    
    .nav a {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        position: relative;
    }
    
    .logo-wrapper {
        position: static;
        transform: none;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .header-logo {
        height: 84px;
        padding: 4px;
        border-width: 3px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .header-content {
        justify-content: space-between;
        min-height: auto;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -110%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: linear-gradient(180deg, #1e3a8a, #1e293b);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2.5rem 0 2rem;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1002;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
        width: 100%;
    }

    .nav li {
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
    }

    .nav li:last-child {
        border-bottom: none;
    }

    /* Mobile dropdown */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(0,0,0,.15);
        border-radius: 8px;
        box-shadow: none;
        border: none;
        min-width: 0;
        padding: .25rem 0;
        margin: 0 0 .5rem;
        display: none;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: flex;
    }

    .nav-dropdown-menu a {
        padding: .65rem 1.5rem;
        font-size: .85rem;
    }

    .nav-dropdown-menu a:hover {
        padding-left: 2rem;
    }

    .nav-dropdown-menu li {
        border-bottom: none;
    }

    .nav a {
        font-size: 0.95rem;
        display: block;
        padding: 1rem 0.5rem;
        letter-spacing: 0.5px;
        font-weight: 500;
        transition: background 0.2s ease, padding-left 0.2s ease;
        border-radius: 8px;
    }

    .nav a:hover {
        background: rgba(255, 255, 255, 0.08);
        padding-left: 1rem;
    }

    .nav a::before {
        display: none;
    }

    .nav-logo-mobile {
        display: flex;
        justify-content: center;
        padding: 2rem 2rem 1rem;
        margin-top: auto;
    }

    .nav-logo-mobile img {
        height: 110px;
        width: auto;
        border-radius: 50%;
        border: 4px solid rgba(255, 255, 255, 0.9);
        background: var(--color-white);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

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

    .about-card {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .about-text {
        font-size: 1.05rem;
    }

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

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card {
        padding: 2rem;
    }
    
    .whatsapp-btn {
        font-size: 1rem;
        padding: 1rem 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-secondary));
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
    position: relative;
    color: var(--color-white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--color-yellow);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: -0.3px;
}

.footer-section p {
    color: var(--color-gray-light);
    line-height: 1.7;
    font-weight: 300;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.footer-section a:hover::before {
    opacity: 1;
    left: -5px;
}

/* Footer Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact svg {
    color: var(--color-yellow);
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
    padding-left: 0;
}

.footer-contact a::before {
    display: none;
}

.footer-contact a:hover {
    color: var(--color-yellow);
    transform: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray-light);
    font-size: 0.95rem;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-yellow);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--color-yellow);
}

.section-subtitle::before {
    right: calc(100% + 15px);
}

.section-subtitle::after {
    left: calc(100% + 15px);
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-red));
    margin: 1rem auto 0;
}

/* Card Numbers */
.card-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(245, 158, 11, 0.1);
    line-height: 1;
    z-index: 0;
}

.card {
    position: relative;
}

.card-icon {
    position: relative;
    z-index: 1;
}

/* News Section */
.news-section {
    padding: 2rem 0 6rem;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.news-section-light {
    background: #f3f4f6;
    padding: 4rem 0 5rem;
}

.news-section.news-section-light .section-subtitle {
    color: var(--color-blue);
}

.news-section.news-section-light .section-subtitle::before,
.news-section.news-section-light .section-subtitle::after {
    background: var(--color-blue);
}

.news-section.news-section-light .section-title {
    color: var(--color-dark);
}

.news-section.news-section-light .no-news p {
    color: var(--color-gray-dark);
}

.yellow-accent {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: #fbbf24;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.15;
}

.news-section-light .yellow-accent {
    display: none;
}

.news-section .section-subtitle {
    color: var(--color-yellow);
}

.news-section .section-subtitle::before,
.news-section .section-subtitle::after {
    background: var(--color-yellow);
}

.news-section .section-title {
    color: var(--color-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--color-yellow);
    transition: height 0.4s ease;
    z-index: 2;
}

.news-card:hover::before {
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover .news-overlay {
    opacity: 1;
}

.news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.news-date svg {
    color: var(--color-yellow);
}

.news-content h3 {
    color: var(--color-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 60px;
}

.news-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color .3s;
}

.news-content h3 a:hover {
    color: var(--color-blue);
}

.news-content p {
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.news-link svg {
    transition: transform 0.3s ease;
}

.news-link:hover {
    color: var(--color-blue);
    gap: 1rem;
}

.news-link:hover svg {
    transform: translateX(5px);
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--color-gray-light);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-yellow);
    color: var(--color-dark);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-red);
    transition: left 0.4s ease;
    z-index: 0;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button span,
.cta-button svg {
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Home Events Section */
.home-events-section {
    padding: 6rem 0;
    background: var(--color-dark);
    position: relative;
}

.home-events-section .section-subtitle {
    color: var(--color-yellow);
}

.home-events-section .section-subtitle::before,
.home-events-section .section-subtitle::after {
    background: var(--color-yellow);
}

.home-events-section .section-title {
    color: var(--color-white);
}

.home-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.home-event-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}

.home-event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.home-event-img {
    height: 180px;
    overflow: hidden;
}

.home-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.home-event-card:hover .home-event-img img {
    transform: scale(1.06);
}

.home-event-date {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .85rem 1.25rem;
    background: linear-gradient(135deg, var(--color-blue), #1e40af);
    color: #fff;
}

.home-event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.home-event-month {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: .9;
}

.home-event-year {
    font-size: .75rem;
    opacity: .55;
    margin-left: auto;
}

.home-event-body {
    padding: 1.25rem 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-event-cat {
    display: inline-block;
    background: rgba(37,99,235,.08);
    color: var(--color-blue);
    padding: .2rem .7rem;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: .6rem;
    align-self: flex-start;
}

.home-event-body h3 {
    color: var(--color-dark);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: .75rem;
}

.home-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.home-event-meta span {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: var(--color-gray);
    font-size: .8rem;
    font-weight: 500;
}

.home-event-meta svg {
    stroke: var(--color-blue);
    flex-shrink: 0;
}

.home-events-section .section-cta {
    margin-top: 3rem;
}

.home-events-section .cta-button {
    border-color: rgba(255,255,255,.2);
    color: var(--color-white);
}

.home-events-section .cta-button::before {
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-light));
}

.home-events-section .cta-button:hover {
    color: var(--color-dark);
    border-color: var(--color-yellow);
}

@media (max-width: 1024px) {
    .home-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-events-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 6rem 0;
    background: var(--color-light-bg);
    position: relative;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: #fbbf24;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
}

.contact-cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-cta-left {
    text-align: center;
}

.contact-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 50px rgba(251, 191, 36, 0.3);
    transition: all 0.4s ease;
    border: 5px solid rgba(255, 255, 255, 0.9);
    background: var(--color-white);
    padding: 15px;
}

.contact-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 70px rgba(251, 191, 36, 0.5);
}

.contact-cta-left .brasao {
    max-width: 300px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.contact-cta-right h2 {
    color: var(--color-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.contact-cta-right p {
    color: var(--color-gray-dark);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Responsive News Section */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .section-subtitle::before,
    .section-subtitle::after {
        display: none;
    }
    
    .yellow-accent {
        width: 60%;
    }
    
    .contact-cta-right h2 {
        font-size: 2rem;
    }

    .news-content h3 {
        min-height: auto;
    }

    .news-content p {
        min-height: auto;
    }

    .contact-logo {
        max-width: 180px;
        padding: 10px;
        border-width: 3px;
    }
}


/* Contact Info Box */
.contact-info-box {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid var(--color-yellow);
    padding: 1.5rem;
    margin: 1.5rem 0 2rem;
    border-radius: 8px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-gray-dark);
    font-size: 1.1rem;
    margin: 0;
}

.phone-number svg {
    color: var(--color-yellow);
    flex-shrink: 0;
}

.phone-number strong {
    color: var(--color-blue);
}
