* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gotham', 'Gotham Book', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #1e88e5 0%, #0d47a1 100%);
    background-image: url('fundo.png'), linear-gradient(180deg, #1e88e5 0%, #0d47a1 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Header with Gradient */
.header-gradient {
    background: linear-gradient(180deg, #4fc3f7 0%, #29b6f6 20%, #0288d1 50%, #0277bd 100%);
    padding: 20px 16px 40px;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    width: auto;
    object-fit: contain;
    display: block;
}

.event-title {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alinhamento-image {
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Main Content */
.main-content {
    background: #0277bd;
    padding: 30px 16px 20px;
    min-height: calc(100vh - 300px);
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.menu-button {
    background: transparent;
    border: 2px solid white;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.menu-button:active {
    transform: translateY(0);
}

/* Supporters Section */
.supporters-section {
    margin-top: 40px;
    text-align: center;
    padding-bottom: 20px;
}

.supporters-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.sponsors-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsors-grid {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.sponsor-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 16px;
    padding: 25px;
    margin: 0 auto;
}

.sponsor-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

/* Bottom Bar */
.bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lock-icon {
    font-size: 14px;
}

.domain {
    font-weight: 500;
}

.private {
    font-style: italic;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: linear-gradient(180deg, #0277bd 0%, #01579b 100%);
    margin: 5% auto;
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: white;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

#modal-body {
    margin-top: 20px;
    line-height: 1.6;
}

/* Responsive Design */
@media (min-width: 768px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

    .main-content {
        max-width: 500px;
        margin: 0 auto;
        border-radius: 20px 20px 0 0;
    }

    .header-gradient {
        max-width: 500px;
        margin: 0 auto;
        border-radius: 0;
    }

    .status-bar {
        max-width: 500px;
        margin: 0 auto;
    }

    .bottom-bar {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .alinhamento {
        font-size: 36px;
    }

    .title-line3 {
        font-size: 28px;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
    }
}

