/*  1. INTRO */
 .intro {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/home/players_intro.png');
    background-size: cover; 
    background-position: center bottom;
    background-repeat: no-repeat; 
    height: 100vh; 
    width: 100%; 
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center;   
}

.intro .deco-stars {
    margin-top: 0;
    margin-bottom: -30px; 
    z-index: 4;
}

.intro .container-camadas {
    margin-top: 0 !important; 
    height: auto; 
    padding: 20px 0;
}

.intro .texto-fundo {
    font-size: 15rem; 
    position: relative; 
}

.intro .simbolo-meio {
    position: absolute; 
    top: 50%; left: 50%;
    transform: translate(-50%, -50%); 
    width: 140px;
}

.intro .texto-frente {
    font-size: 1.2rem;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.intro .subtitulo { 
    margin-top: 0;
    margin-bottom: 0;
} 

/*  2. AGENDA */
.agenda {
    background-color: #000;
    overflow: hidden;
    background-position: calc(100% + 300px) center;
    background-size: auto 800px;
    height: auto;
    min-height: 600px;
    
    position: relative;
    padding: 80px 5%;
    min-height: 600px;
}

.agenda-conteudo {
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex;
    flex-direction: column;
    gap: 30px; 
    position: relative; 
    z-index: 2; 
}

.titulo-agenda {
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.cards-wrapper {
    display: flex;
    gap: 20px; 
    flex-wrap: wrap; 
}

.card-evento {
    flex: 1; 
    min-width: 300px; 
    background-color: rgba(18, 18, 18, 0.9); 
    backdrop-filter: blur(4px); 
    -webkit-backdrop-filter: blur(4px); 
    border-radius: 16px;
    padding: 25px;
    text-decoration: none; 
    display: flex;
    flex-direction: column;
    gap: 20px; 
    transition: transform 0.2s, background-color 0.2s; 
}

.card-evento:hover {
    transform: translateY(-5px); 
    background-color: rgba(26, 26, 26, 0.95);
}

.card-topo, .card-base {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
}

.card-meio {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nome-evento {
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.rodada {
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.link-completa {
    color: #fC4C02; 
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
}

.link-completa:hover {
    text-decoration: underline;
}

.mensagem-vazia {
    text-align: center;
    color: #cccccc;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    width: 100%;
    padding: 40px 20px;
    background-color: rgba(18, 18, 18, 0.9); 
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 16px;
    border: 1px dashed #fc4c02; 
    margin: 0 auto;
}

/* DESTAQUE DO EVENTO DE HOJE NA HOME: O CARD INTEIRO LARANJA */
.card-evento.evento-hoje {
    background-color: #fc4c02; 
    box-shadow: 0 0 25px rgba(252, 76, 2, 0.5); 
    border: none; 
}

.card-evento.evento-hoje * {
    color: #ffffff !important;
}

.card-evento.evento-hoje .data-hora,
.card-evento.evento-hoje .nome-evento,
.card-evento.evento-hoje .rodada,
.card-evento.evento-hoje .jogadores,
.card-evento.evento-hoje .local {
    color: #ffffff !important;
}

.card-evento.evento-hoje .card-topo {
    background-color: transparent; 
}

/* 3. FAIXA "GIF" */
.faixa {
    width: 100%;
    padding: 20px 0; 
    display: flex;
    justify-content: center;
    overflow: hidden; 
    font-family: 'OnePiece', sans-serif;
    font-size: 1.5rem;
    background-color: #ffffff; 
    animation: pulsoTexto 3s ease-in-out infinite;
}

.conteudo-faixa {
    display: flex;
    align-items: center;
    gap: 30px; 
    white-space: nowrap; 
}

.seta-faixa {
    height: 25px; 
    animation: pulsoSeta 3s ease-in-out infinite;
}

@keyframes pulsoTexto {
    0%, 100% { color: #fc4c02; }
    50%      { color: #0a0a0a; } 
}

@keyframes pulsoSeta {
    0%, 100% { filter: none; } 
    50%      { filter: brightness(0); } 
}

/*  4. PARCEIROS */
#parceiros {
    background-color: #fc4c02; 
    position: relative;
    overflow: hidden;
    padding: 80px 5%; 
    color: #f5f5f5; 
}

#parceiros::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../img/home/fumacapatro.webp');
    background-repeat: no-repeat;
    background-position: center center; 
    background-size: cover; 
    opacity: 0.3; 
    z-index: 1; 
}

.parceiros-conteudo {
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 50px;
    position: relative;
    z-index: 2; 
}

#parceiros h1 {
    color: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;   
    flex-wrap: wrap;    
    width: 100%;
    margin-top: 20px;
    gap: 20px;
}

.parceiro-item {
    flex: 0 1 calc(20% - 25px);
    min-width: 180px;
    aspect-ratio: 16 / 9; 
    background-color: transparent; 
    border-radius: 12px; 
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border: 3px solid transparent; 
    transition: all 0.3s ease; 
    box-sizing: border-box; 
}

.logo-img {
    max-width: 85%;  
    max-height: 80%; 
    width: auto;
    height: auto;
    object-fit: contain; 
}

.parceiro-item:hover {
    border-color: #f5f5f5; 
    transform: scale(1.05) translateY(-5px); 
}

/*  5. CALLOUTS/LINKS */
#callouts {
    background-color: #000;
    width: 100%;
    padding: 80px 5%; 
}

.callouts-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; 
}

.callout-card {
    border-radius: 8px; 
    overflow: hidden;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.callout-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 85, 0, 0.2);
}

.callout-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

.conteudo-card {
    position: relative;
    z-index: 2; 
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 20px; 
}

.textos-callout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 60%;
    gap: 10px; 
}

.textos-callout h1, 
.textos-callout h3 {
    color: #f5f5f5;
    margin: 0;
    line-height: 1.1;
}

.textos-callout h1 {
    font-family: 'Tusker', sans-serif;
    font-weight: 700;
}

.textos-callout h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400; 
}

.btn-callout {
    background-color: #f5f5f5;
    color: #fc4c02;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    flex-shrink: 0; 
}

.btn-callout:hover {
    background-color: #f5f5f5;
}

.callout-card.jersey {
    grid-column: 1; 
    grid-row: 1 / span 2; 
    background-image: url('../img/home/card1.png'); 
}
.callout-card.jersey .textos-callout h1 { font-size: 5rem; }
.callout-card.jersey .textos-callout h3 { font-size: 1.6rem; }

.callout-card.discord {
    grid-column: 2; 
    grid-row: 1; 
    height: 180px; 
    background-image: url('../img/home/card2.png');
}
.callout-card.discord .textos-callout h1 { font-size: 2.5rem; }

.callout-card.blog {
    grid-column: 2; 
    grid-row: 2; 
    height: 180px; 
    background-image: url('../img/home/card3.png'); 
}
.callout-card.blog .textos-callout h1 { font-size: 2.5rem; }

.callout-card.setup {
    grid-column: 1 / span 2; 
    height: 250px; 
    background-image: url('../img/home/card4.png'); 
}
.callout-card.setup .textos-callout h1 { font-size: 5rem; }
.callout-card.setup .textos-callout h3 { font-size: 1.6rem; }

/*  RESPONSIVIDADE GERAL */

/*  1. NOTEBOOKS E TABLETS */
@media (max-width: 1200px) {
    /* INTRODUÇÃO */
    .intro {
        height: auto; 
        min-height: 60vh; 
        padding-top: 150px;
        padding-bottom: 50px;
        background-size: cover;
        background-position: center top; 
    }
    .intro .texto-fundo { font-size: clamp(5rem, 15vw, 10rem); }
    .intro .simbolo-meio { width: clamp(100px, 12vw, 130px); }
    .intro .texto-frente { font-size: clamp(0.9rem, 2.5vw, 1.1rem); }
    .intro .subtitulo { font-size: 0.7rem; letter-spacing: 5px; }
}

/*  2. TABLETS NA VERTICAL */
@media (max-width: 900px) {
    /* INTRODUÇÃO */
    .intro {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/home/players_menor.png');
        min-height: 50vh; 
    }

    /* FAIXA "GIF" */
    .oculta-mobile { display: none; }
    .conteudo-faixa { gap: 15px; }
    .seta-faixa { height: 18px; }

    /* AGENDA */
    .agenda {
        height: auto; 
        min-height: auto; 
        padding: 60px 5%; 
        background-position: right center;
        background-size: cover; 
    }
    .cards-wrapper { flex-direction: column; gap: 20px; }
    .card-evento { width: 100%; }

    /* CALLOUTS */
    .callouts-container { grid-template-columns: 1fr; }
    .callout-card.jersey, .callout-card.discord, .callout-card.blog, .callout-card.setup {
        grid-column: 1; 
        grid-row: auto; 
        height: auto; 
        min-height: 250px; 
    }
    .conteudo-card {
        flex-direction: column; 
        align-items: flex-start; 
        gap: 20px;
    }
    .textos-callout { max-width: 100%; }
    .callout-card.jersey .textos-callout h1, .callout-card.setup .textos-callout h1 { font-size: 3.5rem; }
}

/*  3. CELULARES */
@media (max-width: 600px) {
    /* INTRODUÇÃO */
    .intro {
        padding-top: 100px;
        background-position: center 20%; 
    }
    .intro .deco-stars { transform: scale(0.6); } 
    .intro .texto-fundo { font-size: 4.5rem; }
    .intro .subtitulo { letter-spacing: 4px; font-size: 0.6rem; }

    /* CALLOUTS (Cards Promocionais) */
    #callouts { padding: 50px 5%; }
    .callout-card.jersey .textos-callout h1, .callout-card.setup .textos-callout h1 { font-size: 2.8rem; }
    .callout-card.discord .textos-callout h1, .callout-card.blog .textos-callout h1 { font-size: 2rem; }
    .callout-card.jersey .textos-callout h3, .callout-card.setup .textos-callout h3 { font-size: 1.2rem; }
}