/* pages.css - Estilos especÃ­ficos das pÃ¡ginas */

/* --- Agenda: filtros colapsÃ¡veis no mobile --- */
.btn-toggle-filtros {
    display: none;
}

.filtros-panel {
    display: flex;
}

@media (max-width: 768px) {
    .btn-toggle-filtros {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        margin-bottom: 1rem;
        padding: 0.75rem 1rem;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: var(--color-bg-card);
        color: var(--color-primary-700);
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
    }

    .btn-toggle-filtros i {
        width: 16px;
        height: 16px;
    }

    .filtros-panel {
        display: none;
    }

    .filtros-panel.show {
        display: flex;
    }
}

.features-section {
    padding: 8rem 0;
    background-color: var(--color-bg-body);
    border-top: 1px solid var(--color-border);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary-700);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .feature-content {
        padding: 1rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-title::after {
        height: 2px;
        margin-top: 0.35rem;
    }
}

.feature-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.feature-img-wrapper {
    position: absolute;
    inset: 0;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: saturate(0.85) brightness(0.92);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.05) 65%);
    transition: background 0.4s ease;
    z-index: 1;
}

.feature-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    z-index: 2;
    transform: translateY(0.4rem);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.feature-title::after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    margin-top: 0.5rem;
    background: var(--color-primary-400, #fff);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-img {
    transform: scale(1.12);
    filter: saturate(1.1) brightness(0.75);
}

.feature-card:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.05) 75%);
}

.feature-card:hover .feature-content {
    transform: translateY(0);
}

.feature-card:hover .feature-title::after {
    width: 2.5rem;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Agenda: cards mobile / tabela desktop --- */
.jogos-cards-mobile {
    display: none;
}

@media (max-width: 768px) {
    .jogos-tabela-desktop {
        display: none;
    }

    .jogos-cards-mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

.jogo-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.jogo-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.jogo-card-date {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.jogo-card-date-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary-800);
}

.jogo-card-weekday {
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-primary-500);
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.jogo-card-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.jogo-card-time i {
    width: 14px;
    height: 14px;
}

.jogo-card-modalidade {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-primary-600);
    background: var(--color-primary-50);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.jogo-card-matchup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0.75rem;
}

.jogo-card-team {
    flex: 1;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.jogo-card-team:last-child {
    text-align: right;
}

.jogo-card-team:last-child span {
    flex-direction: row-reverse;
}

.jogo-card-vs {
    color: var(--color-text-light);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.jogo-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.jogo-card-footer i {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    margin-right: 0.2rem;
}

/* --- LED Neon Divider --- */
.led-divider-wrapper {
    width: 100%;
    background: #000;
    padding: 1px 0;
    position: relative;
    z-index: 10;
}

.led-divider {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #00e5ff, #0066ff, #00e5ff);
    background-size: 200% auto;
    box-shadow: 0 0 15px #00e5ff, 0 0 30px #00e5ff, 0 0 45px #0066ff;
    animation: led-pulse 3s infinite, gradient-shift 5s linear infinite;
}

@keyframes led-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 15px #00e5ff, 0 0 30px #00e5ff, 0 0 45px #0066ff; }
    50% { opacity: 0.5; box-shadow: 0 0 5px #00e5ff, 0 0 10px #00e5ff, 0 0 20px #0066ff; }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* --- Carrossel de Modalidades --- */
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0 3rem;
    /* Efeito de fade nas bordas para nÃ£o cortar seco */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-carousel 40s linear infinite;
}
.feature-card:hover .feature-img {
    transform: scale(1.12);
    filter: saturate(1.1) brightness(0.75);
}

.feature-card:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.05) 75%);
}

.feature-card:hover .feature-content {
    transform: translateY(0);
}

.feature-card:hover .feature-title::after {
    width: 2.5rem;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Agenda: cards mobile / tabela desktop --- */
.jogos-cards-mobile {
    display: none;
}

@media (max-width: 768px) {
    .jogos-tabela-desktop {
        display: none;
    }

    .jogos-cards-mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

.jogo-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.jogo-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.jogo-card-date {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.jogo-card-date-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary-800);
}

.jogo-card-weekday {
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-primary-500);
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.jogo-card-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.jogo-card-time i {
    width: 14px;
    height: 14px;
}

.jogo-card-modalidade {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-primary-600);
    background: var(--color-primary-50);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.jogo-card-matchup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0.75rem;
}

.jogo-card-team {
    flex: 1;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.jogo-card-team:last-child {
    text-align: right;
}

.jogo-card-team:last-child span {
    flex-direction: row-reverse;
}

.jogo-card-vs {
    color: var(--color-text-light);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.jogo-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.jogo-card-footer i {
    width: 12px;
    height: 12px;
    vertical-align: middle;
    margin-right: 0.2rem;
}

/* --- LED Neon Divider --- */
.led-divider-wrapper {
    width: 100%;
    position: relative;
    z-index: 10;
}

.led-divider {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #00e5ff, #0066ff, #00e5ff);
    background-size: 200% auto;
    box-shadow: 0 0 15px #00e5ff, 0 0 30px #00e5ff, 0 0 45px #0066ff;
    animation: led-pulse 3s infinite, gradient-shift 5s linear infinite;
}

@keyframes led-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 15px #00e5ff, 0 0 30px #00e5ff, 0 0 45px #0066ff; }
    50% { opacity: 0.5; box-shadow: 0 0 5px #00e5ff, 0 0 10px #00e5ff, 0 0 20px #0066ff; }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* --- Carrossel de Modalidades --- */
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0 3rem;
    /* Efeito de fade nas bordas para nÃ£o cortar seco */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-carousel 40s linear infinite;
}

/* hover remido conforme solicitado: .carousel-wrapper:hover .carousel-track { animation-play-state: paused; } */

@keyframes scroll-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}

/* Garantir que os cards dentro do track tenham uma largura fixa */
.carousel-track .feature-card {
    width: 260px;
    flex-shrink: 0;
}

/* --- SeÃ§Ã£o Motivacional (CTA) --- */
.cta-section {
    background: var(--color-bg-body);
    padding: 6rem 1rem;
    border-top: 1px solid var(--color-border);
}

/* .cta-section h2 removed to use .premium-title */

.cta-text {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 2.5rem;
}

/* --- Ranking Premium --- */
.ranking-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 0.6s backwards;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ranking-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.ranking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.ranking-team-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rank-badge {
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-text-light);
    background: var(--color-bg-body);
    flex-shrink: 0;
}

.rank-1 { border: 2px solid rgba(212, 175, 55, 0.4); background: linear-gradient(to right, rgba(212, 175, 55, 0.05), var(--color-bg-card)); }
.rank-1 .rank-badge { background: linear-gradient(135deg, #ffd700, #d4af37); color: #fff; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
.rank-1 .ranking-points { color: #d4af37; text-shadow: 0 0 10px rgba(212,175,55,0.3); }

.rank-2 { border: 1px solid rgba(148, 163, 184, 0.5); }
.rank-2 .rank-badge { background: linear-gradient(135deg, #e2e8f0, #94a3b8); color: #fff; box-shadow: 0 4px 10px rgba(148, 163, 184, 0.3); }

.rank-3 { border: 1px solid rgba(205, 127, 50, 0.5); }
.rank-3 .rank-badge { background: linear-gradient(135deg, #fba973, #cd7f32); color: #fff; box-shadow: 0 4px 10px rgba(205, 127, 50, 0.3); }

.team-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.team-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-text-main);
}

.ranking-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.medals-container {
    display: flex;
    gap: 0.5rem;
}

.medal-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-md);
}

.medal-gold { color: #d4af37; background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212,175,55,0.2); }
.medal-silver { color: #718096; background: rgba(148, 163, 184, 0.1); border: 1px solid rgba(148,163,184,0.2); }
.medal-bronze { color: #cd7f32; background: rgba(205, 127, 50, 0.1); border: 1px solid rgba(205,127,50,0.2); }
.medal-badge svg { width: 14px; height: 14px; }

.ranking-points {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary-700);
}

.ranking-progress-bg {
    background: var(--color-bg-body);
    border-radius: var(--radius-full);
    height: 8px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.ranking-progress-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}
/* ===================== TOKENS ===================== */
:root {
  --green: #007E7A;
  --green-light: #1CC7BE;
  --green-glow: #14e0d4;
  --yellow: #ECB11F;
  --dark: #05201f;
  --dark-2: #0a2b29;
  --text: #eafaf8;
  --muted: rgba(234, 250, 248, 0.72);
  --card-bg: rgba(9, 32, 31, 0.55);
  --card-border: rgba(28, 199, 190, 0.28);
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font-hero: "Montserrat", system-ui, sans-serif;
  --font-display: "Rajdhani", sans-serif;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: var(--font-hero);
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.08);
  animation: slowZoom 24s ease-in-out infinite alternate;
}
@keyframes slowZoom { to { transform: scale(1); } }

.hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 20% 40%, rgba(2, 25, 24, 0.35), transparent 60%),
    linear-gradient(90deg, rgba(3, 24, 23, 0.92) 0%, rgba(3, 24, 23, 0.55) 45%, rgba(3, 24, 23, 0.35) 100%),
    linear-gradient(180deg, rgba(3, 24, 23, 0.55), rgba(3, 24, 23, 0.9));
}
.hero__aurora {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    radial-gradient(40% 50% at 15% 30%, rgba(20, 224, 212, 0.22), transparent 70%),
    radial-gradient(35% 45% at 85% 75%, rgba(236, 177, 31, 0.16), transparent 70%);
  mix-blend-mode: screen;
  animation: auroraFloat 12s ease-in-out infinite alternate;
}
@keyframes auroraFloat {
  0% { transform: translate3d(0,0,0); opacity: .8; }
  100% { transform: translate3d(30px,-20px,0); opacity: 1; }
}
.hero__grid {
  position: absolute; inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(28,199,190,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,199,190,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(80% 60% at 50% 40%, #000 30%, transparent 75%);
}

/* folhas */
.leaves { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 4; }
.leaf {
  position: absolute;
  top: -40px;
  font-size: 22px;
  opacity: .55;
  animation: fall linear infinite;
}
@keyframes fall {
  0%   { transform: translateY(-40px) rotate(0deg); opacity: 0; }
  10%  { opacity: .6; }
  100% { transform: translateY(110vh) rotate(420deg); opacity: 0; }
}

/* CONTEÃšDO */
.hero__content {
  position: relative;
  z-index: 5;
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 40px 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ---- ESQUERDA ---- */
.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green-light);
  background: rgba(28, 199, 190, 0.1);
  border: 1px solid rgba(28, 199, 190, 0.3);
  backdrop-filter: blur(6px);
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-glow);
  box-shadow: 0 0 12px var(--green-glow);
  animation: pulseHero 1.8s ease-in-out infinite;
}
@keyframes pulseHero { 50% { opacity: .3; transform: scale(1.4); } }

.hero__title {
  margin-top: 22px;
  line-height: .95;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.hero__title-main {
  font-weight: 900;
  font-size: clamp(38px, 9vw, 128px);
  letter-spacing: 2px;
  background: linear-gradient(120deg, #ffffff 0%, var(--green-light) 45%, var(--green-glow) 70%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 30px rgba(20, 224, 212, 0.3));
}
.hero__title-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 4.5vw, 56px);
  letter-spacing: clamp(6px, 2vw, 14px);
  text-indent: clamp(6px, 2vw, 14px);
  color: var(--yellow);
  margin-top: 6px;
}

.hero__rings { display: flex; gap: 8px; margin-top: 18px; }
.hero__ring {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 4px solid;
  display: inline-block;
}
.ring--blue { border-color: #2f6fed; }
.ring--yellow { border-color: var(--yellow); }
.ring--black { border-color: #e9f5f4; }
.ring--green { border-color: var(--green-light); }
.ring--red { border-color: #e5484d; }

.hero__subtitle {
  margin-top: 26px;
  max-width: 480px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(234, 250, 248, 0.72);
}
.hero__subtitle strong { color: #fff; }

.hero__actions { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.hero__btn--primary {
  color: #04211f;
  background: linear-gradient(135deg, var(--green-light), var(--yellow));
  box-shadow: 0 12px 30px rgba(28, 199, 190, 0.4);
}
.hero__btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(236, 177, 31, 0.45); color: #04211f; }
.hero__btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}
.hero__btn--ghost:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-3px); color: #fff; }

.hero__stats { margin-top: 40px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: flex-start; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  color: #fff;
  line-height: 1;
}
.hero__stat-label { font-size: 13px; color: rgba(234, 250, 248, 0.72); margin-top: 4px; letter-spacing: .5px; }
.hero__stat-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.15); }

/* ---- DIREITA / COUNTDOWN ---- */
.hero__right { display: flex; justify-content: flex-end; }
.countdown-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 34px 32px 28px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.countdown-card__glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(20, 224, 212, 0.5), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.countdown-card__header { text-align: center; margin-bottom: 26px; }
.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--yellow);
  background: rgba(236, 177, 31, 0.12);
  border: 1px solid rgba(236, 177, 31, 0.3);
}
.live-tag__pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
  animation: pulseHero 1.4s ease-in-out infinite;
}
.countdown-card__title {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
}

.countdown { display: flex; align-items: flex-start; justify-content: center; gap: 6px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cd-unit__box {
  position: relative;
  min-width: 74px;
  padding: 16px 10px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(28, 199, 190, 0.14), rgba(5, 32, 31, 0.65));
  border: 1px solid rgba(28, 199, 190, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.cd-unit__box span {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 4px 20px rgba(20, 224, 212, 0.4);
}
.cd-unit__box.flip span { animation: flip .5s ease; }
@keyframes flip {
  0% { transform: translateY(-10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cd-unit__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(234, 250, 248, 0.72);
}
.cd-sep {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: rgba(28, 199, 190, 0.5);
  padding-top: 10px;
}

.countdown-card__footer {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--green-light);
  font-weight: 600;
  font-size: 14.5px;
}

.progress { margin-top: 18px; height: 6px; border-radius: 100px; background: rgba(255, 255, 255, 0.1); overflow: hidden; }
.progress__bar {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--green-light), var(--yellow));
  box-shadow: 0 0 12px rgba(20, 224, 212, 0.6);
  transition: width 1s ease;
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(234, 250, 248, 0.72);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-cue__mouse {
  width: 24px; height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-cue__mouse span {
  width: 4px; height: 8px;
  border-radius: 4px;
  background: var(--green-light);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: 0; } }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 980px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding: 110px 24px 60px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero__left {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .hero__title {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .hero__badge, .hero__rings, .hero__actions, .hero__stats {
    align-items: center;
    justify-content: center;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
  }
  .hero__right {
    justify-content: center;
    width: 100%;
  }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(3,24,23,.75), rgba(3,24,23,.95));
  }
}

@media (max-width: 600px) {
  .hero__actions {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }
  .hero__btn {
    flex: 1 1 130px;
    padding: 13px 18px;
    font-size: 14px;
    justify-content: center;
  }
  .hero__stats {
    gap: 14px;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .hero__stat {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 95px;
    padding-bottom: 40px;
    gap: 32px;
  }
  .hero__title-main {
    font-size: clamp(32px, 11vw, 44px);
    letter-spacing: 1px;
  }
  .hero__title-year {
    font-size: clamp(18px, 5.5vw, 24px);
    letter-spacing: 6px;
    text-indent: 6px;
  }
  .hero__subtitle {
    font-size: 14px;
    line-height: 1.55;
    margin-top: 18px;
  }
  .hero__actions {
    margin-top: 24px;
    gap: 8px;
  }
  .hero__btn {
    padding: 12px 12px;
    font-size: 13px;
    border-radius: 12px;
    gap: 6px;
    min-width: 0;
  }
  .hero__btn svg {
    width: 16px;
    height: 16px;
  }
  .hero__stats {
    margin-top: 28px;
    gap: 8px;
    width: 100%;
    justify-content: space-evenly;
  }
  .hero__stat-num {
    font-size: 22px;
  }
  .hero__stat-label {
    font-size: 11px;
  }
  .hero__stat-divider {
    height: 26px;
  }
  .countdown-card {
    padding: 22px 12px 18px;
    border-radius: 16px;
  }
  .countdown-card__title {
    font-size: 17px;
  }
  .cd-unit__box {
    min-width: 52px;
    padding: 8px 3px;
    border-radius: 10px;
  }
  .cd-unit__box span {
    font-size: 26px;
  }
  .cd-sep {
    font-size: 20px;
    padding-top: 4px;
  }
  .cd-unit__label {
    font-size: 9.5px;
    letter-spacing: 1px;
  }
}

/* ===================== MODAL DE TEASER ===================== */
.teaser-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.teaser-modal.show {
  opacity: 1;
  pointer-events: all;
}

.teaser-modal__content {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.teaser-modal.show .teaser-modal__content {
  transform: scale(1);
}

.teaser-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 20px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 1001;
}

.teaser-modal__close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
}

/* ===================== AGENDA HOME SECTION ===================== */
.agenda-home-section {
  background-color: var(--dark-2, #0a2b29);
  padding: 5rem 0 6rem;
  font-family: var(--font-hero, "Montserrat", sans-serif);
}

.agenda-home-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.agenda-home-title-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.agenda-home-title {
  font-family: var(--font-display, "Rajdhani", sans-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(120deg, #ffffff 0%, #ffffff 50%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.agenda-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.agenda-day-card {
  background: var(--card-bg, rgba(9, 32, 31, 0.55));
  border: 1px solid var(--card-border, rgba(28, 199, 190, 0.28));
  border-radius: var(--radius, 22px);
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.agenda-day-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border-color: rgba(28, 199, 190, 0.6);
}

.agenda-day-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.agenda-day-date {
  font-family: var(--font-display, "Rajdhani", sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-light, #1CC7BE);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.agenda-day-num {
  font-size: 42px;
  line-height: 1;
  color: #fff;
}
.agenda-day-weekday {
  font-size: 14px;
  color: var(--muted, rgba(234, 250, 248, 0.72));
  margin-top: 4px;
}

.agenda-day-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid;
  letter-spacing: 1px;
}

.agenda-day-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.1) 90%, transparent);
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  margin: 24px 0;
}

.agenda-event-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agenda-event-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14.5px;
}

.agenda-time {
  font-family: var(--font-display, "Rajdhani", sans-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--green-light, #1CC7BE);
  min-width: 48px;
  margin-top: -1px;
}
.agenda-time.highlight {
  color: var(--yellow, #ECB11F);
}

.agenda-event {
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
}
.agenda-event.highlight {
  font-weight: 700;
}
.agenda-event svg {
  opacity: 0.9;
}

.agenda-home-footer {
  text-align: center;
  margin-top: 3.5rem;
  font-size: 14.5px;
  color: var(--muted, rgba(234, 250, 248, 0.72));
}

@media (max-width: 1100px) {
  .agenda-home-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .agenda-home-grid { grid-template-columns: 1fr; }
  .agenda-home-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
  .agenda-home-header .hero__btn { display: none !important; }
  .agenda-home-section { padding: 4rem 1rem; }
}
