/* Alligator's Fight Team - New Premium Unified Stylesheet */

/* --- Design Variables --- */
:root {
    --corPrincipal: #060608;
    --corPrincipal2: #0e0e12;
    --corPrincipal3: #181822;
    --corSecundaria: #e11d48;
    --corSecundaria2: #ff4d72;
    --corVermelhoNeon: #f43f5e;
    --degradeEscuro: linear-gradient(145deg, #13131c 0%, #060608 100%);
    --degradeVermelho: linear-gradient(135deg, #e11d48 0%, #9f1239 100%);
    --corContraste: #ffffff;
    --corContraste2: #08080a; /* Dark base background */
    --corContrasteMuted: #a1a1aa;
    --fontDestaque: "Plus Jakarta Sans", sans-serif;
    --fontTexto: "Plus Jakarta Sans", sans-serif;
    --fontTitulo: "Syne", sans-serif;

    /* Prajied Graduations */
    --prajied0: #f4f4f5; /* Branco */
    --prajied1: #eab308; /* Amarelo */
    --prajied2: #f97316; /* Laranja */
    --prajied3: #16a34a; /* Verde */
    --prajied4: #dc2626; /* Vermelho */
    --prajied5: #7c3aed; /* Roxo */
    --prajied6: #78350f; /* Marrom */
    --prajied7: #09090b; /* Preto */
    
    --shadowPremium: 0 15px 35px rgba(0, 0, 0, 0.6);
    --borderGlass: 1px solid rgba(255, 255, 255, 0.05);
    --transitionSmooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Resets & Body Rules --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--corContraste2);
    color: var(--corContraste);
    font-family: var(--fontTexto);
    line-height: 1.6;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fontTitulo);
    font-weight: 800;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transitionSmooth);
}

img {
    max-width: 100%;
    height: auto;
    object-position: center;
    object-fit: cover;
}

/* --- Common Components --- */
.centraliza {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4em 1.5em;
}

.dividirTema {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--corContraste);
    border-left: 4px solid var(--corSecundaria);
    padding-left: 0.6em;
    margin-bottom: 1.5em;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--corContrasteMuted);
    margin-bottom: 2em;
    max-width: 700px;
}

/* --- Buttons --- */
.btnPadrao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8em;
    padding: 0.9em 2em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    background: var(--degradeVermelho);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--corContraste);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4);
    cursor: pointer;
    transition: var(--transitionSmooth);
}

.btnPadrao:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.6);
    background: linear-gradient(135deg, var(--corVermelhoNeon) 0%, var(--corSecundaria) 100%);
}

.btnPadrao img {
    width: 1.3em;
    height: 1.3em;
}

.btnSecundario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9em 2em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--corContraste);
    cursor: pointer;
    transition: var(--transitionSmooth);
}

.btnSecundario:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* --- Fixed Navigation --- */
.navPrincipal {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.nav-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.6em 1.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-socials-top {
    display: flex;
    gap: 0.8em;
}

.nav-socials-top a {
    width: 2.2em;
    height: 2.2em;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transitionSmooth);
    padding: 0;
}

.nav-socials-top a:hover {
    background: var(--corSecundaria);
    transform: scale(1.1);
}

.nav-socials-top img {
    width: 1.2em;
    height: 1.2em;
    filter: brightness(1);
}

.nav-main {
    padding: 0.6em 1.5em;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.nav-brand .logo {
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    border: 2px solid var(--corSecundaria);
}

.nav-brand h2 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.listaPages {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8em;
    padding: 0.6em 1.5em;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    list-style: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.listaPages::-webkit-scrollbar {
    display: none;
}

.listaPages a {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5em 1em;
    display: inline-block;
    color: var(--corContrasteMuted);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    transition: var(--transitionSmooth);
}

.listaPages a:hover {
    color: var(--corContraste);
    border-color: var(--corSecundaria);
    background: rgba(225, 29, 72, 0.15);
}

/* --- Hero Section --- */
.hero {
    background-image: var(--degradeEscuro);
    padding: 12.5em 1.5em 4em 1.5em;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3em;
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--corSecundaria);
    margin-bottom: 0.8em;
    display: inline-block;
}

.heroContent {
    max-width: 100%;
    z-index: 2;
}

.heroContent h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

.heroContent .highlightText {
    background: var(--degradeVermelho);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.heroContent p {
    font-size: 1rem;
    color: var(--corContrasteMuted);
    margin-bottom: 2em;
    max-width: 550px;
}

.heroButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

/* --- Sobre Section --- */
.sobre-section {
    background-color: var(--corPrincipal2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.sobre-text-area {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.sobre-text-area p {
    font-size: 1.05rem;
    color: var(--corContrasteMuted);
    line-height: 1.8;
}

/* --- Prajied timeline Section --- */
.prajied-timeline-section {
    background-color: var(--corContraste2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.timeline-navigation {
    position: relative;
    margin: 3em 0 1.5em 0;
    width: 100%;
}

.timeline-line {
    position: absolute;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    width: 100%;
    top: 41px;
    left: 0;
    z-index: 0;
}

.timeline-scroll {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 2.5em;
    padding: 25px 20px 2em 20px;
    z-index: 1;
    position: relative;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.timeline-scroll::-webkit-scrollbar {
    height: 4px;
}

.timeline-scroll::-webkit-scrollbar-thumb {
    background: var(--corPrincipal3);
    border-radius: 4px;
}

.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    min-width: 5.5em;
    transition: var(--transitionSmooth);
}

.timeline-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #1f1f29;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: var(--transitionSmooth);
    display: block;
    margin-bottom: 0.8em;
    z-index: 2;
}

.timeline-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--corContrasteMuted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transitionSmooth);
}

.timeline-node:hover .timeline-badge {
    transform: scale(1.2);
    box-shadow: 0 0 12px var(--corSecundaria);
}

.timeline-node.active .timeline-badge {
    transform: scale(1.3);
    border-color: var(--corContraste);
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.6);
}

.timeline-node.active .timeline-label {
    color: var(--corContraste);
    font-weight: 800;
}

.timeline-info-card {
    background: var(--corPrincipal2);
    border: var(--borderGlass);
    border-radius: 12px;
    padding: 1.8em;
    margin-top: 1.5em;
    box-shadow: var(--shadowPremium);
    position: relative;
    transition: var(--transitionSmooth);
}

.timeline-info-card h3 {
    font-size: 1.3rem;
    color: var(--corContraste);
    margin-bottom: 0.3em;
    text-transform: uppercase;
}

.timeline-info-rank {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--corSecundaria);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1em;
}

.timeline-info-card p {
    font-size: 0.95rem;
    color: var(--corContrasteMuted);
    line-height: 1.6;
}

/* --- Filters and Search section --- */
.athletes-section {
    background-color: var(--corPrincipal2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.filters-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5em;
    margin-bottom: 2em;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 0.9em 1.2em;
    background-color: var(--corContraste2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    color: var(--corContraste);
    outline: none;
    font-size: 0.95rem;
    transition: var(--transitionSmooth);
}

.search-box input:focus {
    border-color: var(--corSecundaria);
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.15);
}

.filter-status-container {
    display: flex;
    align-items: center;
    gap: 1em;
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.2);
    padding: 0.5em 1.2em;
    border-radius: 30px;
    font-size: 0.85rem;
}

.filter-status-container span {
    font-weight: 700;
    color: var(--corSecundaria);
}

.filter-status-container button {
    background: transparent;
    border: none;
    color: var(--corContraste);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transitionSmooth);
}

.filter-status-container button:hover {
    color: var(--corSecundaria);
}

.carrossel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

/* --- Athlete Cards --- */
.atleta-card {
    margin: 1.2em 0.5em;
    width: 16.5em;
    min-width: 16.5em;
    display: flex;
    flex-direction: column;
    background-color: #141416;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), z-index 0s;
    position: relative;
    z-index: 1;
}

.atleta-card:hover {
    transform: scale(1.06) translateY(-5px);
    border-color: rgba(225, 29, 72, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85), 0 0 15px rgba(225, 29, 72, 0.25);
    z-index: 50;
}

.atleta-img-wrapper {
    position: relative;
    width: 100%;
    height: 18em;
    overflow: hidden;
}

.atleta-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.atleta-card:hover .atleta-photo {
    transform: scale(1.08);
}

.atleta-prajied {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: var(--corPrincipal);
    border: 2px solid var(--corSecundaria);
}

.atleta-card:hover .atleta-prajied {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(225, 29, 72, 0.5);
}

.atleta-prajied img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.atleta-info {
    padding: 1.2em;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.8em;
    background: linear-gradient(to top, rgba(12, 12, 14, 1) 0%, rgba(20, 20, 22, 0.95) 100%);
}

.atleta-info h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--corContraste);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
    text-align: left;
}

.atleta-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6em;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.6em;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.atleta-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.atleta-stat-box:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.atleta-stat-box .stat-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--corContraste);
}

.atleta-stat-box.lutas .stat-num { color: var(--corContrasteMuted); }
.atleta-stat-box.vitorias .stat-num { color: #10b981; }
.atleta-stat-box.derrotas .stat-num { color: #f43f5e; }

.atleta-stat-box .stat-name {
    font-size: 0.6rem;
    color: var(--corContrasteMuted2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2em;
}

.atleta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    background-color: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.2);
    padding: 0.6em;
    border-radius: 6px;
    color: var(--corContraste);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    margin-top: auto;
}

.atleta-link img {
    width: 1.1em;
    height: 1.1em;
}

.atleta-link:hover {
    background: var(--degradeVermelho);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

/* --- Events Section --- */
.events-section {
    background-color: var(--corContraste2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.eventos-subtitulo {
    font-size: 1.1rem;
    color: var(--corContrasteMuted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 1.5em 0 0.5em 0.5em;
    font-weight: 700;
}

.evento {
    perspective: 1500px;
    width: 17em;
    min-width: 17em;
    height: 24.5em;
    margin: 1.2em 0.5em;
    color: var(--corContraste);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), z-index 0s;
    z-index: 1;
}

.evento:hover {
    transform: scale(1.06) translateY(-5px);
    z-index: 50;
}

.rodarCampo {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.frente, .verso {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 8px;
    background-color: #141416;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.evento:hover .frente,
.evento:hover .verso {
    border-color: rgba(225, 29, 72, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85), 0 0 15px rgba(225, 29, 72, 0.25);
}

.verso {
    transform: rotateY(180deg);
    padding: 1.5em;
    justify-content: space-between;
    align-items: center;
}

.voltarFrente {
    transform: rotateY(180deg);
}

.evento-img-wrapper {
    position: relative;
    width: 100%;
    height: 10.5em;
    overflow: hidden;
}

.evento-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evento-date-badge {
    position: absolute;
    top: 0.8em;
    right: 0.8em;
    background-color: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--corContraste);
    padding: 0.3em 0.8em;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.evento-body {
    padding: 1.2em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.evento-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--corContraste);
    line-height: 1.3;
}

.evento-channel {
    font-size: 0.8rem;
    color: var(--corContrasteMuted);
    display: flex;
    align-items: center;
    gap: 0.4em;
    margin-top: 0.4em;
}

.evento-channel img {
    width: 1.1em;
    height: 1.1em;
}

.evento-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6em;
    margin-top: auto;
}

.btn-assistir {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    width: 100%;
    padding: 0.7em;
    background: var(--degradeVermelho);
    color: var(--corContraste);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.25);
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transitionSmooth);
}

.btn-assistir:not(.indisponivel):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(225, 29, 72, 0.4);
    background: linear-gradient(135deg, var(--corVermelhoNeon) 0%, var(--corSecundaria) 100%);
}

.btn-assistir.indisponivel {
    background: var(--corPrincipal3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--corContrasteMuted);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-assistir img {
    width: 1.1em;
    height: 1.1em;
}

.btn-lutas-equipe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    width: 100%;
    padding: 0.65em;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--corContraste);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transitionSmooth);
}

.btn-lutas-equipe:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(225, 29, 72, 0.3);
    color: var(--corSecundaria);
}

.btn-lutas-equipe img {
    width: 1.1em;
    height: 1.1em;
}

/* EVENTO VERSO */
.evento-verso-header {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--corPrincipal3);
    padding-bottom: 0.8em;
}

.evento-verso-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
}

.evento-verso-header p {
    font-size: 0.75rem;
    color: var(--corSecundaria);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2em;
}

.lutas-container {
    width: 100%;
    height: 11.5em;
    margin: 0.8em 0;
    overflow: hidden;
}

.lutas {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    overflow-y: auto;
    padding-right: 0.3em;
    list-style: none;
}

.luta-link-item {
    display: flex;
    align-items: center;
    gap: 0.6em;
    width: 100%;
    padding: 0.6em 0.8em;
    background: var(--corPrincipal3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    color: var(--corContraste);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    outline: none;
    transition: var(--transitionSmooth);
}

.luta-link-item:hover {
    background: rgba(225, 29, 72, 0.1);
    border-color: rgba(225, 29, 72, 0.3);
    color: var(--corSecundaria);
    transform: translateX(3px);
}

.luta-link-item img {
    width: 1.2em;
    height: 1.2em;
}

.sem-lutas {
    font-size: 0.8rem;
    color: var(--corContrasteMuted);
    text-align: center;
    margin-top: 3.5em;
    padding: 0 1.5em;
    line-height: 1.5;
}

.btn-voltar-card {
    width: 100%;
    padding: 0.7em;
    background: transparent;
    border: 1px solid var(--corSecundaria);
    color: var(--corSecundaria);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transitionSmooth);
}

.btn-voltar-card:hover {
    background: var(--corSecundaria);
    color: var(--corContraste);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

.evento-date-verso {
    font-size: 0.75rem;
    color: var(--corContrasteMuted);
    margin-top: 0.6em;
}

/* --- Graduates (Black Belt) Section --- */
.graduates-section {
    background-color: var(--corPrincipal2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mestre-highlight {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.08) 0%, rgba(6, 6, 8, 0) 100%);
    border: 1px solid rgba(225, 29, 72, 0.15);
    border-radius: 12px;
    padding: 2.2em;
    margin-bottom: 3em;
    box-shadow: var(--shadowPremium);
}

.mestre-content h3 {
    font-size: 1.4rem;
    color: var(--corContraste);
    margin-bottom: 0.8em;
    text-transform: uppercase;
}

.mestre-content p {
    font-size: 1.05rem;
    color: var(--corContrasteMuted);
    line-height: 1.8;
}

.campoGraduado {
    width: 15.5em;
    min-width: 15.5em;
    display: flex;
    margin: 1.2em 0.5em;
    background-color: #141416;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), z-index 0s;
    position: relative;
    z-index: 1;
}

.campoGraduado:hover {
    transform: scale(1.06) translateY(-5px);
    border-color: rgba(225, 29, 72, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85), 0 0 15px rgba(225, 29, 72, 0.25);
    z-index: 50;
}

.graduado {
    width: 13em;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
}

.graduado-img-wrapper {
    width: 100%;
    height: 12em;
    overflow: hidden;
    border-radius: 7px 0 0 0;
}

.graduado-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.campoGraduado:hover .graduado-img-wrapper img {
    transform: scale(1.08);
}

.graduado-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4em;
    padding: 0.8em 0.6em;
}

.graduado h3 {
    background: var(--degradeVermelho);
    margin: 0;
    width: 100%;
    padding: 0.5em;
    font-size: 0.8rem;
    text-align: center;
    color: var(--corContraste);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 4px;
}

.graduado-cidade {
    font-size: 0.72rem;
    color: var(--corContrasteMuted);
}

.graduado-insta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    color: var(--corContraste);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    width: 100%;
    padding: 0.5em;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.graduado-insta-btn img {
    width: 1.2em;
    height: 1.2em;
}

.graduado-insta-btn:hover {
    background: var(--degradeVermelho);
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.35);
}

.prajiedGraduado {
    width: 2.5em;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b0b0d;
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 0 7px 7px 0;
    box-shadow: inset -5px 0px 15px rgba(0, 0, 0, 0.6);
}

.prajiedGraduado-logo-wrapper {
    position: absolute;
    left: -0.9em;
    width: 2.8em;
    height: 2.8em;
    border-radius: 50%;
    border: 2px solid var(--corSecundaria);
    background-color: var(--corPrincipal);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.campoGraduado:hover .prajiedGraduado-logo-wrapper {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.5);
}

.prajiedGraduado img {
    width: 100%;
    height: 100%;
}

/* --- Registration (Matrícula) Section --- */
.matricula-section {
    background-color: var(--corContraste2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.matricula-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3em;
    align-items: flex-start;
}

.matricula-form-card {
    background-color: var(--corPrincipal2);
    border: var(--borderGlass);
    padding: 2.5em 1.8em;
    border-radius: 16px;
    box-shadow: var(--shadowPremium);
}

.form-header {
    margin-bottom: 2em;
}

.form-header h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 0.3em;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--corContrasteMuted);
}

.campoInput {
    position: relative;
    width: 100%;
    margin-bottom: 1.5em;
}

.campoInput label {
    position: absolute;
    left: 1.2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 0.4em;
    background-color: transparent;
    z-index: 1;
    color: var(--corContrasteMuted);
    pointer-events: none;
    transform-origin: left top;
}

.campoInput input {
    background-color: rgba(12, 12, 14, 0.45);
    padding: 1.1em 1.2em;
    border-radius: 8px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    outline: none;
    color: var(--corContraste);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.campoInput input:focus {
    border-color: var(--corSecundaria);
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.2);
    background-color: rgba(6, 6, 8, 0.75);
}

.campoInput input:focus + label,
.campoInput input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%) scale(0.8);
    left: 1.0em;
    color: var(--corSecundaria);
    font-weight: 700;
    background-color: var(--corPrincipal2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.campoInput input::placeholder {
    opacity: 0;
}

.campoInput input:focus::placeholder {
    opacity: 0.4;
}

.form-group {
    margin-bottom: 1.5em;
}

.group-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--corContraste);
    margin-bottom: 0.8em;
}

/* Checkbox Groups */
.horario-checkbox-group {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 0.6em;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6em 1.2em;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    transition: var(--transitionSmooth);
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox .checkmark {
    width: 1em;
    height: 1em;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: var(--transitionSmooth);
}

.custom-checkbox input:checked + .checkmark {
    background: var(--corSecundaria);
    border-color: var(--corSecundaria);
}

.custom-checkbox input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 3px;
    height: 6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox:has(input:checked) {
    background: rgba(225, 29, 72, 0.08);
    border-color: rgba(225, 29, 72, 0.3);
    color: var(--corSecundaria);
}

/* Radios Group */
.planos-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

.custom-radio {
    display: flex;
    align-items: center;
    gap: 1em;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8em 1.2em;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: var(--transitionSmooth);
}

.custom-radio input {
    display: none;
}

.custom-radio .radiomark {
    width: 1.2em;
    height: 1.2em;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: var(--transitionSmooth);
}

.custom-radio input:checked + .radiomark {
    border-color: var(--corSecundaria);
}

.custom-radio input:checked + .radiomark::after {
    content: '';
    position: absolute;
    width: 0.5em;
    height: 0.5em;
    background: var(--corSecundaria);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-label-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.95rem;
}

.plano-name {
    font-weight: 700;
}

.plano-desc {
    color: var(--corContrasteMuted);
}

.custom-radio:has(input:checked) {
    background: rgba(225, 29, 72, 0.06);
    border-color: rgba(225, 29, 72, 0.3);
}

.custom-radio:has(input:checked) .plano-name {
    color: var(--corSecundaria);
}

.custom-radio:has(input:checked) .plano-desc {
    color: var(--corContraste);
}

/* Dynamic Price Box */
.checkout-display {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.2em;
    margin-top: 1.5em;
    transition: var(--transitionSmooth);
}

.checkout-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.checkout-detail strong {
    font-size: 1.3rem;
    color: var(--corSecundaria);
}

#submit-form-btn {
    width: 100%;
    margin-top: 1.5em;
    background: var(--degradeVermelho);
    border: none;
    padding: 1em 2em;
    border-radius: 30px;
    color: var(--corContraste);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8em;
    transition: var(--transitionSmooth);
}

#submit-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.55);
}

#submit-form-btn img {
    width: 1.3em;
    height: 1.3em;
}

/* Benefits Card */
.oferecimento-card {
    background-color: var(--corPrincipal2);
    border: var(--borderGlass);
    padding: 2.5em 2em;
    border-radius: 16px;
    box-shadow: var(--shadowPremium);
}

.oferecimento-card h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 1.5em;
    border-bottom: 2px solid var(--corSecundaria);
    padding-bottom: 0.5em;
    display: inline-block;
}

.oferecimento-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.oferecimento-list li {
    display: flex;
    gap: 1.2em;
    align-items: flex-start;
}

.oferecimento-icon {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.25);
    color: var(--corSecundaria);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.oferecimento-text strong {
    font-size: 1.05rem;
    color: var(--corContraste);
    display: block;
    margin-bottom: 0.2em;
}

.oferecimento-text p {
    font-size: 0.9rem;
    color: var(--corContrasteMuted);
    line-height: 1.5;
}

/* --- Footer --- */
footer {
    background-color: var(--corPrincipal2);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--corContraste);
    width: 100%;
    padding: 4em 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    color: var(--corContrasteMuted);
}

footer h2 {
    font-size: 1.6rem;
    color: var(--corContraste);
    letter-spacing: 0.25em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4em 1.5em;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
}

.developer-link {
    color: var(--corContrasteMuted);
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-size: 0.85rem;
    padding: 0.5em 1.2em;
    border-radius: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transitionSmooth);
}

.developer-link:hover {
    color: var(--corContraste);
    background: var(--corSecundaria);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(225, 29, 72, 0.35);
    transform: translateY(-2px);
}

.developer-link img {
    width: 1.1em;
    height: 1.1em;
}

/* --- Custom Scrollbar for Carousels --- */
.carrossel {
    display: flex;
    overflow-x: auto;
    gap: 1.5em;
    padding: 1.5em 1em 2.5em 1em;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    list-style: none;
    cursor: grab;
    user-select: none;
}

.carrossel.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.carrossel::-webkit-scrollbar {
    height: 6px;
}

.carrossel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.carrossel::-webkit-scrollbar-thumb {
    background: var(--corPrincipal3);
    border-radius: 10px;
}

.carrossel::-webkit-scrollbar-thumb:hover {
    background: var(--corSecundaria);
}

/* --- Carousel Navigation Buttons --- */
.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    background: rgba(12, 12, 14, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--corContraste);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.carrossel-btn:hover {
    background: var(--corSecundaria);
    border-color: var(--corSecundaria);
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carrossel-btn.prev {
    left: 15px;
}

.carrossel-btn.next {
    right: 15px;
}

.carrossel-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.8);
}

@media screen and (max-width: 768px) {
    .carrossel-btn {
        display: none; /* Hide navigation arrows on touch screens */
    }
}

/* --- Responsive Media Queries --- */
@media screen and (min-width: 768px) {
    .dividirTema {
        font-size: 2rem;
    }
    
    .heroContent h1 {
        font-size: 3.5rem;
    }
    
    .matricula-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 3em;
    }
}

@media screen and (min-width: 992px) {
    .menu-btn {
        display: none;
    }

    .nav-main {
        justify-content: center;
        padding: 0.6em 1.5em;
    }

    .listaPages {
        position: static;
        width: auto;
        padding: 0;
        flex-direction: row;
        gap: 1.8em;
        background: transparent;
        border: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        overflow-x: visible;
    }

    .listaPages a {
        padding: 0.5em 0.2em;
        font-size: 0.85rem;
        border: none;
        background: transparent;
        border-radius: 0;
        display: block;
        color: var(--corContraste);
    }

    .listaPages a:hover {
        color: var(--corSecundaria);
        background: transparent;
    }

    .listaPages a::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: var(--corSecundaria);
        transition: width 0.3s ease;
        margin-top: 2px;
    }

    .listaPages a:hover::after {
        width: 100%;
    }

    /* Hero section desktop */
    .hero {
        padding: 10em 4em 4em 4em;
        min-height: 90vh;
    }

    .hero-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .heroContent {
        width: 100%;
        max-width: 800px;
    }

    .heroContent h1 {
        font-size: 4.2rem;
    }

    .heroContent p {
        font-size: 1.1rem;
    }
}

/* --- Floating Conversion Button (Matrícula) --- */
.btn-flutuante-cadastro {
    position: fixed;
    bottom: 40px;
    right: 30px;
    left: auto;
    z-index: 999;
    background: var(--degradeVermelho);
    color: var(--corContraste);
    border-radius: 30px;
    padding: 0.9em 2em;
    display: inline-flex;
    align-items: center;
    gap: 0.8em;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transitionSmooth);
    animation: pulseFloatingBtn 3s infinite;
}

.btn-flutuante-cadastro img {
    width: 1.3em;
    height: 1.3em;
}

.btn-flutuante-cadastro:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.6);
    background: linear-gradient(135deg, var(--corVermelhoNeon) 0%, var(--corSecundaria) 100%);
}

@keyframes pulseFloatingBtn {
    0% { box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4); }
    50% { box-shadow: 0 10px 35px rgba(225, 29, 72, 0.75); }
    100% { box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4); }
}

/* --- Mobile Responsiveness (max-width: 480px) --- */
@media screen and (max-width: 480px) {
    html, body {
        font-size: 13.5px; /* Downscale base layout on mobile devices */
    }
    
    .navPrincipal {
        padding: 0.6em 1em;
    }
    
    .nav-brand h2 {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 12em 1em 4em 1em;
    }
    
    .heroContent h1 {
        font-size: 2.2rem;
    }
    
    .section-container {
        padding: 3em 1em;
    }
    
    .dividirTema {
        font-size: 1.6rem;
        margin-bottom: 1.4em;
    }
    
    .matricula-form-card {
        padding: 1.8em !important; /* Override inline styles */
    }
    
    .oferecimento-card {
        padding: 1.8em 1.5em;
    }

    .timeline-info-card {
        padding: 1.5em;
    }

    .atleta-card {
        margin: 1.2em 0.4em;
    }

    .evento {
        margin: 1.2em 0.4em;
    }

    .btn-flutuante-cadastro {
        bottom: 35px;
        right: 20px;
        left: auto;
    }
}

/* --- Mobile Responsiveness (max-width: 380px) --- */
@media screen and (max-width: 380px) {
    html, body {
        font-size: 12px; /* Even smaller font size on very tiny viewports */
    }
    
    .navPrincipal {
        padding: 0.5em 0.7em;
    }
    
    .nav-brand h2 {
        font-size: 1rem;
        letter-spacing: 0.05em;
    }
    
    .hero {
        padding: 11em 0.7em 3em 0.7em;
    }
    
    .heroContent h1 {
        font-size: 1.7rem;
    }
    
    .section-container {
        padding: 2em 0.7em;
    }
    
    .dividirTema {
        font-size: 1.25rem;
        padding-left: 0.5em;
        margin-bottom: 1.2em;
    }
    
    .matricula-form-card {
        padding: 1.2em !important; /* Override inline styles */
    }

    .oferecimento-card {
        padding: 1.2em 0.8em;
    }

    .timeline-info-card {
        padding: 1.1em;
    }
    
    .custom-radio {
        padding: 0.6em 0.8em;
        gap: 0.6em;
    }
    
    .radio-label-content {
        font-size: 0.85rem;
    }
    
    .checkout-detail strong {
        font-size: 1.1rem;
    }
    
    .timeline-node {
        min-width: 4.5em;
    }
}

/* --- Staggered Scroll and Load Animations --- */

/* Hero Entry Animations */
.heroContent h1,
.heroContent p,
.heroContent .heroButtons {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUpHero 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.heroContent h1 {
    animation-delay: 0.1s;
}

.heroContent p {
    animation-delay: 0.35s;
}

.heroContent .heroButtons {
    animation-delay: 0.55s;
}

@keyframes fadeInUpHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Triggered Staggered Sections */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Inside visible sections, animate key items sequentially */
.fade-in-section.visible .sobre-text-area,
.fade-in-section.visible .timeline-navigation,
.fade-in-section.visible .timeline-info-card,
.fade-in-section.visible .carrossel-wrapper,
.fade-in-section.visible .matricula-form-card,
.fade-in-section.visible .oferecimento-card {
    opacity: 0;
    animation: fadeInUpStagger 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-section.visible .sobre-text-area { animation-delay: 0.15s; }
.fade-in-section.visible .timeline-navigation { animation-delay: 0.15s; }
.fade-in-section.visible .timeline-info-card { animation-delay: 0.35s; }
.fade-in-section.visible .carrossel-wrapper { animation-delay: 0.25s; }
.fade-in-section.visible .matricula-form-card { animation-delay: 0.15s; }
.fade-in-section.visible .oferecimento-card { animation-delay: 0.35s; }

/* Staggered card loads inside carousels when visible */
.fade-in-section.visible .carrossel > * {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUpStaggerCard 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-section.visible .carrossel > *:nth-child(1) { animation-delay: 0.2s; }
.fade-in-section.visible .carrossel > *:nth-child(2) { animation-delay: 0.3s; }
.fade-in-section.visible .carrossel > *:nth-child(3) { animation-delay: 0.4s; }
.fade-in-section.visible .carrossel > *:nth-child(4) { animation-delay: 0.5s; }
.fade-in-section.visible .carrossel > *:nth-child(n+5) { animation-delay: 0.6s; }

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

@keyframes fadeInUpStaggerCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Video Player Modal (Netflix Style) --- */
.video-modal.netflix-style {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.netflix-style.active {
    opacity: 1;
    pointer-events: auto;
}

.video-player-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #000000;
}

/* Netflix Overlay Controls */
.video-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-player-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Top bar: back button and active video title */
.player-top-controls {
    width: 100%;
    padding: 3rem 4rem 4rem 4rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    pointer-events: auto;
}

.btn-player-back {
    background: transparent;
    border: none;
    color: var(--corContraste);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--fontDestaque);
    cursor: pointer;
    transition: var(--transitionSmooth);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.btn-player-back svg {
    transition: transform 0.3s ease;
}

.btn-player-back:hover {
    color: var(--corSecundaria);
}

.btn-player-back:hover svg {
    transform: translateX(-4px);
}

.player-video-title {
    font-family: var(--fontTitulo);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--corContraste);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

/* Bottom bar: autoplay next video button */
.player-bottom-controls {
    width: 100%;
    padding: 4rem 4rem 4rem 4rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: auto;
}

.btn-next-event {
    background: rgba(20, 20, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--corContraste);
    border-radius: 8px;
    padding: 1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 380px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-next-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.next-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--corContrasteMuted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.next-title {
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--fontDestaque);
    color: var(--corContraste);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

.btn-next-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-next-event:hover {
    background: rgba(225, 29, 72, 0.15);
    border-color: var(--corSecundaria);
    box-shadow: 0 0 25px rgba(225, 29, 72, 0.4);
    transform: scale(1.03);
}

.btn-next-event:hover .btn-next-icon {
    background: var(--corSecundaria);
    transform: translateX(4px);
}

.btn-next-event:hover .next-label {
    color: var(--corSecundaria2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .player-top-controls {
        padding: 1.5rem 1.5rem 2.5rem 1.5rem;
        gap: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .player-video-title {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .btn-player-back {
        font-size: 0.95rem;
        padding: 0.25rem 0.5rem;
    }
    
    .player-bottom-controls {
        padding: 2.5rem 1.5rem 2.5rem 1.5rem;
        justify-content: center;
    }
    
    .btn-next-event {
        width: 100%;
        max-width: 100%;
        padding: 0.85rem 1.25rem;
        gap: 1rem;
    }
    
    .next-title {
        font-size: 0.95rem;
        max-width: 180px;
    }
    
    .btn-next-icon {
        width: 34px;
        height: 34px;
    }
}

/* --- Video Selector Modal --- */
.selector-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.selector-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.selector-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.selector-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background-color: #0c0c0e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(225, 29, 72, 0.15);
    z-index: 2;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.selector-modal.active .selector-content {
    transform: scale(1);
}

.selector-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--corContrasteMuted);
    font-size: 2.2rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: var(--transitionSmooth);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.selector-close:hover {
    color: var(--corSecundaria);
    transform: rotate(90deg);
}

.selector-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.selector-header h3 {
    font-family: var(--fontTitulo);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--corContraste);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

#selector-modal-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--corSecundaria);
    margin: 0;
}

.selector-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.selector-option {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border-radius: 8px;
    font-family: var(--fontDestaque);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.selector-option img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.primary-option {
    background: var(--degradeVermelho);
    border: none;
    color: var(--corContraste);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.35);
}

.primary-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.5);
    filter: brightness(1.1);
}

.selector-fights-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
}

.selector-fights-section h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--corContrasteMuted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.selector-fights-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

/* Custom scrollbar for fights list */
.selector-fights-grid::-webkit-scrollbar {
    width: 4px;
}
.selector-fights-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
.selector-fights-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}
.selector-fights-grid::-webkit-scrollbar-thumb:hover {
    background: var(--corSecundaria);
}

.fight-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--corContraste);
}

.fight-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
    color: var(--corSecundaria2);
}

.fight-option:hover img {
    filter: drop-shadow(0 0 4px var(--corSecundaria));
}

@media (max-width: 480px) {
    .selector-content {
        padding: 1.75rem;
        gap: 1.25rem;
    }
    
    .selector-header h3 {
        font-size: 1.3rem;
    }
    
    .selector-option {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Static Event Card styles */
.evento-card-static {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: #141416;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.evento:hover .evento-card-static {
    border-color: rgba(225, 29, 72, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85), 0 0 15px rgba(225, 29, 72, 0.25);
}