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

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/images/banner_2560x1440_2026.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content {
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    width: 100%;
    max-width: 1920px;
    margin: -1vh auto 0;
}

.date {
    font-family: 'Berimbau', Arial, sans-serif;
    font-size: 3.3rem;
    font-weight: 100;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    margin-bottom: -13rem;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 1), 3px 3px 20px rgba(0, 0, 0, 1), 6px 6px 30px rgba(0, 0, 0, 0.9);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-stretch: ultra-condensed;
    transform: scaleX(0.92);
}

.logo-container {
    margin-bottom: -20rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo {
    width: 100%;
    max-width: 1550px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.tagline {
    font-family: 'Berimbau', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 100;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 1), 3px 3px 20px rgba(0, 0, 0, 1), 6px 6px 30px rgba(0, 0, 0, 0.9);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-stretch: ultra-condensed;
    transform: scaleX(0.92);
}

/* Applications Button */
.participate-container {
    position: relative;
    display: inline-block;
    margin-top: 2.5rem;
}

.participate-btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 40px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    outline: none;
}

.participate-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.participate-dropdown {
    position: fixed;
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 0;
    min-width: 220px;
    max-height: 50vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 1px 2px rgba(255, 255, 255, 0.05) inset;
}

.participate-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.participate-link {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 24px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.participate-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
    border-left-color: rgba(255, 68, 51, 0.6);
    padding-left: 28px;
}

.participate-link.disabled {
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
}

.participate-link.disabled:hover {
    color: rgba(255, 255, 255, 0.3);
    background: transparent;
    border-left-color: transparent;
    padding-left: 24px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.social-icons a:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.social-icons a:hover svg {
    stroke: rgba(255, 255, 255, 1);
}

.social-icons svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    stroke: rgba(255, 255, 255, 0.8);
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .container {
        background-image: url('assets/images/banner_mobile_2026.jpg');
        background-size: cover;
        background-position: center;
    }

    .content {
        padding: 20px;
        margin: -8vh auto 0 !important;
        justify-content: center;
    }

    .date {
        font-size: 2.8rem !important;
        font-weight: 100;
        letter-spacing: 0.01em !important;
        margin-bottom: -9.5rem !important;
        text-shadow: 0 0 40px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 1), 3px 3px 20px rgba(0, 0, 0, 1), 6px 6px 30px rgba(0, 0, 0, 0.9) !important;
    }

    .logo {
        width: 230vw !important;
        max-width: none !important;
    }

    .logo-container {
        margin-bottom: -14rem !important;
    }

    .tagline {
        font-size: 3rem !important;
        font-weight: 100;
        letter-spacing: 0.01em !important;
        text-shadow: 0 0 40px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 1), 3px 3px 20px rgba(0, 0, 0, 1), 6px 6px 30px rgba(0, 0, 0, 0.9) !important;
        margin-bottom: 0 !important;
    }

    .participate-container {
        margin-top: 2rem !important;
    }

    .participate-btn {
        font-size: 0.7rem !important;
        padding: 14px 30px !important;
    }

    .participate-dropdown {
        min-width: 200px !important;
        max-height: 40vh !important;
        bottom: 10px !important;
        padding: 12px 0 !important;
    }

    .participate-link {
        font-size: 0.75rem !important;
        padding: 9px 20px !important;
    }

    .social-icons {
        margin-top: 2rem !important;
        gap: 1.2rem !important;
    }

    .social-icons a {
        width: 45px !important;
        height: 45px !important;
    }

    .social-icons svg {
        width: 22px !important;
        height: 22px !important;
    }
}

@media screen and (max-width: 480px) {
    .content {
        padding-left: 15px;
        padding-right: 15px;
        margin: -6vh auto 0 !important;
    }

    .date {
        font-size: 2.2rem !important;
        margin-bottom: -7.5rem !important;
        text-shadow: 0 0 40px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 1), 3px 3px 20px rgba(0, 0, 0, 1), 6px 6px 30px rgba(0, 0, 0, 0.9) !important;
    }

    .logo {
        width: 210vw !important;
        max-width: none !important;
    }

    .logo-container {
        margin-bottom: -11rem !important;
    }

    .tagline {
        font-size: 2.4rem !important;
        text-shadow: 0 0 40px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 1), 3px 3px 20px rgba(0, 0, 0, 1), 6px 6px 30px rgba(0, 0, 0, 0.9) !important;
        margin-bottom: 0 !important;
    }

    .participate-container {
        margin-top: 1.5rem !important;
    }

    .participate-btn {
        font-size: 0.65rem !important;
        padding: 12px 26px !important;
    }

    .participate-dropdown {
        min-width: 180px !important;
        max-height: 35vh !important;
        bottom: 10px !important;
        padding: 12px 0 !important;
    }

    .participate-link {
        font-size: 0.75rem !important;
        padding: 8px 18px !important;
    }

    .social-icons {
        margin-top: 1.5rem !important;
        gap: 1rem !important;
    }

    .social-icons a {
        width: 40px !important;
        height: 40px !important;
    }

    .social-icons svg {
        width: 20px !important;
        height: 20px !important;
    }
}
/* Cache bust 1761521269 */
