body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #000033;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    color: white;
    scroll-behavior: smooth;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #001a4d 0%, #000033 100%);
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: #22d3ee;
    transform: translateY(-5px);
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
}

.input-glass {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: white;
}

.input-glass::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-glass:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4ade80;
    outline: none;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.2);
}

select option {
    color: #000;
    background: #fff;
}

.logo-glow {
    filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.4));
    transition: all 0.5s ease;
}

.logo-success-anim {
    animation: logoPulse 1.5s ease-out infinite;
}

@keyframes logoPulse {
    0% {
        filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.4));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(74, 222, 128, 0.8));
        transform: scale(1.05);
    }

    100% {
        filter: drop-shadow(0 0 15px rgba(34, 211, 238, 0.4));
        transform: scale(1);
    }
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, #4ade80, #22d3ee);
    transition: width 0.4s ease;
}

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #4ade80;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* NAVBAR */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(0, 0, 51, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #22d3ee;
    text-decoration: none;
}

.nav-links {
    display: none;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #4ade80;
}

.nav-cta {
    display: none;
    padding: 6px 16px;
    background: linear-gradient(to right, #4ade80, #22d3ee);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 9999px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nav-cta:hover {
    opacity: 0.85;
}

@media (min-width: 768px) {
    .nav-cta {
        display: inline-block;
    }
}

#hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

@media (min-width: 768px) {
    #hamburger {
        display: none;
    }
}

#hamburger span {
    display: block;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

#hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#hamburger.open span:nth-child(2) {
    opacity: 0;
}

#hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 51, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.5rem;
}

#mobile-menu.open {
    display: flex;
}

#mobile-menu a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
}

#mobile-menu a:last-child {
    border-bottom: none;
}

#mobile-menu a:hover {
    color: #4ade80;
}

.nav-badge {
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 9999px;
    background: linear-gradient(to right, #4ade80, #22d3ee);
    color: #000;
    font-weight: 800;
    margin-left: 6px;
    vertical-align: middle;
}

.badge-readable {
    font-size: 11px !important;
}

/* MODAL & COUNTDOWN */
#modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.countdown-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: #4ade80;
}

.countdown-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.1em;
}

@media (min-width: 400px) {
    .countdown-item {
        min-width: 55px;
    }

    .countdown-val {
        font-size: 1.5rem;
    }
}

@media (min-width: 640px) {
    .countdown-item {
        min-width: 70px;
    }

    .countdown-val {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }
}

/* CRONOGRAMA SPECIFIC */
.btn-back {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.5);
}

.grad-line {
    background: linear-gradient(to right, #4ade80, #22d3ee);
}

.tab-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
    cursor: pointer;
    user-select: none;
}

.tab-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(34, 211, 238, 0.3);
}

.tab-item.active {
    background: rgba(34, 211, 238, 0.08);
    border-color: rgba(34, 211, 238, 0.4);
}

.tab-num {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}

.row-item {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.row-item:hover {
    transform: translateX(4px);
}

.row-conf {
    border-color: rgba(34, 211, 238, 0.2);
    background: rgba(34, 211, 238, 0.04);
}

.row-conf:hover {
    box-shadow: -3px 0 0 #22d3ee;
}

.row-taller {
    border-color: rgba(167, 139, 250, 0.22);
    background: rgba(167, 139, 250, 0.05);
}

.row-taller:hover {
    box-shadow: -3px 0 0 #a78bfa;
}

.row-brk {
    border-color: rgba(74, 222, 128, 0.2);
    background: rgba(74, 222, 128, 0.04);
}

.row-brk:hover {
    box-shadow: -3px 0 0 #4ade80;
}

.row-neutral {
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.time-col {
    width: 92px;
    min-width: 92px;
    flex-shrink: 0;
    padding: 14px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
}

.time-txt {
    font-size: 10px;
    font-weight: 800;
    line-height: 1.35;
    word-break: break-word;
}

.row-conf .time-txt {
    color: #22d3ee;
}

.row-taller .time-txt {
    color: #a78bfa;
}

.row-brk .time-txt {
    color: #4ade80;
}

.row-neutral .time-txt {
    color: #64748b;
}

.type-badge {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 20px;
}

.row-conf .type-badge {
    background: rgba(34, 211, 238, 0.12);
    color: #22d3ee;
}

.row-taller .type-badge {
    background: rgba(167, 139, 250, 0.14);
    color: #a78bfa;
}

.body-col {
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.ev-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    color: #e2e8f0;
}

.row-brk .ev-title {
    color: #4ade80;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.row-neutral .ev-title {
    color: #94a3b8;
}

.fchip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 7px 2px 3px;
    border-radius: 20px;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.fchip .fs {
    width: 16px;
    height: 11px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
}

.fchip .fs svg {
    width: 100%;
    height: 100%;
    display: block;
}

.fc-pe {
    background: rgba(220, 50, 50, .1);
    color: #fca5a5;
    border: 1px solid rgba(220, 50, 50, .22);
}

.fc-mx {
    background: rgba(0, 130, 50, .1);
    color: #86efac;
    border: 1px solid rgba(0, 130, 50, .22);
}

.fc-us {
    background: rgba(30, 70, 150, .12);
    color: #93c5fd;
    border: 1px solid rgba(30, 70, 150, .28);
}

.fc-jp {
    background: rgba(188, 0, 45, .1);
    color: #fca5a5;
    border: 1px solid rgba(188, 0, 45, .22);
}

.sec-sep {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #334155;
    margin: 22px 0 10px;
}

.sec-sep::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.pais-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
}

.pais-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-2px);
}

.pais-flag {
    width: 40px;
    height: 27px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.pais-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.day-block {
    display: none;
}

.day-block.visible {
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: fadeUp 0.38s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.row-speaker {
    cursor: pointer;
    position: relative;
}

.row-speaker .speaker-cta {
    font-size: 10px;
    font-weight: 700;
    color: #22d3ee;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.row-speaker:hover .speaker-cta {
    opacity: 1;
}

.row-speaker:hover .ev-title {
    color: #ffffff;
}

.row-taller.row-speaker:hover .ev-title {
    color: #c4b5fd;
}

.row-taller.row-speaker .speaker-cta {
    color: #a78bfa;
}

/* DUAL TABS */
.dual-tabs {
    display: none;
}

@media (max-width: 639px) {
    .dual-tabs {
        display: flex;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0;
    }

    .dual-tab-btn {
        flex: 1;
        padding: 10px 6px;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        text-align: center;
        cursor: pointer;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.35);
        border-bottom: 3px solid transparent;
        transition: color 0.2s, border-color 0.2s;
    }

    .dual-tab-btn.active {
        color: #4ade80;
        border-bottom-color: #4ade80;
    }

    .dual-cards-wrap {
        display: block !important;
    }

    .dual-card-b-wrap {
        display: none;
    }

    .dual-card-b-wrap.visible {
        display: block;
    }

    .dual-card-a-wrap.hidden-tab {
        display: none;
    }
}

@media (min-width: 640px) {
    .dual-cards-wrap {
        display: flex !important;
    }

    .dual-card-a-wrap,
    .dual-card-b-wrap {
        display: block !important;
    }
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .tab-num {
        font-size: 1.4rem;
    }

    .time-col {
        width: 80px;
        min-width: 80px;
        padding: 10px 6px;
    }

    .body-col {
        padding: 10px 12px;
    }

    .ev-title {
        font-size: 12px;
    }

    .pais-card {
        padding: 8px 12px;
        gap: 8px;
    }

    .pais-flag {
        width: 32px;
        height: 22px;
    }

    .row-speaker .speaker-cta {
        opacity: 0.7;
    }

    #modal {
        align-items: flex-end !important;
        padding: 0 !important;
    }

    #modal>div {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        max-height: 90vh;
        overflow-y: auto;
    }
}

@media (max-width: 400px) {
    .time-col {
        width: 68px;
        min-width: 68px;
        padding: 8px 5px;
    }

    .time-txt {
        font-size: 9px;
    }

    .body-col {
        padding: 8px 10px;
    }

    .ev-title {
        font-size: 11px;
    }

    .fchip {
        font-size: 8px;
        padding: 2px 5px 2px 2px;
    }

    .fchip .fs {
        width: 14px;
        height: 9px;
    }

    .pais-card {
        padding: 7px 10px;
    }
}