:root {
    --bg: #0b1220;
    --card: #0f1a2b;
    --soft: #13223a;
    --accent: #2f6bff;
    --text: #e7ecf3;
    --border: rgba(255, 255, 255, 0.08);
}

html,
body {
    height: 100%;
    background: radial-gradient(
            1500px 800px at 20% -20%,
            rgba(47, 107, 255, 0.12),
            transparent
        ),
        radial-gradient(
            1200px 600px at 80% 0%,
            rgba(47, 107, 255, 0.08),
            transparent
        ),
        var(--bg);
}

.blue-bg-somus {
    background-color: #0f406a;
}

.blue-text-somus {
    color: #0f406a;
}

.orange-bg-somus {
    background-color: #f58220;
}

.orange-text-somus {
    color: #f58220;
}

.orange-border-somus {
    border-color: #f58220;
}

.black-bg-somus {
    background-color: #231f20;
}

.black-text-somus {
    color: #231f20;
}

.gray-bg-somus {
    background-color: #58595b;
}

.gray-text-somus {
    color: #58595b;
}

.primary-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
    z-index: 0;
}

.image-container {
    background-color: rgba(0, 0, 0, 0.3);
}

.map-section {
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
}

/*.guests-section {
    background-color: #efefef !important;
}*/

#mainMessage {
    min-height: 30vh;
    color: var(--text);
}

.error-container {
    position: fixed;
    top: 25vh;
    right: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    z-index: 100;
    max-width: 250px;
}

.success-container {
    position: fixed;
    top: 25vh;
    right: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    z-index: 100;
}

.countdown-timer {
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}
.countdown-unit {
    background-color: #007bff;
    border-radius: 5px;
    padding: 15px;
    width: 80px;
    height: 80px;
    text-align: center;
    position: relative;
}
.countdown-unit span {
    display: block;
    font-size: 1.5rem;
    transition: opacity 0.5s ease-in-out;
}

.fading {
    opacity: 0;
}

.main-confirm {
    margin-top: 50px;
}

/*  LOGOS */
.logo-wall {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
}

.logo-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 0.75rem;
}

.logo-item img {
    max-width: 100%;
    max-height: 44px;
    opacity: 0.9;
}

.logo-item.placeholder {
    color: var(--muted);
    font-size: 0.9rem;
}

#empresasCarousel {
    min-width: 675px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .cards-3 {
        grid-template-columns: 1fr 1fr;
    }

    .logo-wall {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cards-3 {
        grid-template-columns: 1fr;
    }

    .logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
