/* --- CONFIGURAÇÕES GERAIS --- */
body {
    background-color: #ffffff;
    margin: 0;
}

.secao-hero-time {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.container-hero-time {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Logo um pouco maior que o texto */
    gap: 60px;
    align-items: flex-start;
}

/* --- O LOGO ESTILIZADO "TIME DA FLLU" --- */
.logo-time-wrapper {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

/* A pílula vermelha "time" */
.tag-time {
    background-color: #e30613;
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    padding: 5px 30px;
    border-radius: 100px;
    display: inline-block;
    box-shadow: 4px 4px 0px #000000; /* Efeito de sombra 3D */
    text-transform: lowercase;
}

.palavra-da {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-left: 10px;
    vertical-align: middle;
}

/* O texto "fllu" grande e azul */
.palavra-fllu {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10rem;
    color: #3672b5; /* Azul da referência */
    margin: -30px 0 0 0;
    text-transform: lowercase;
    line-height: 1;
    -webkit-text-stroke: 3px #000000; /* Borda preta */
    filter: drop-shadow(8px 8px 0px #000000); /* Sombra 3D preta */
}

/* O círculo do ano 2026 */
.tag-ano {
    position: absolute;
    right: -20px;
    bottom: 10px;
    background-color: #d4879d; /* Rosa da referência */
    color: #000000;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 50px;
    border: 3px solid #000000;
}

/* --- STATUS E TEXTOS --- */
.status-inscricoes {
    color: #e30613;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 40px;
}

.coluna-texto-time p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 25px;
}

.coluna-texto-time strong {
    color: #3672b5; /* Destaque azul igual ao original */
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .container-hero-time {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .palavra-fllu { font-size: 7rem; }
}

.img-logo-time {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

/* O Botão que leva para a página de parceiros */
.btn-inscricao-aberta {
    display: inline-block;
    background-color: #e30613;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 65px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px; /* Bordas arredondadas estilo pílula */
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-inscricao-aberta:hover {
    background-color: #c20510;
}

/* Texto de inscrições encerradas */
.texto-encerrado {
    color: #e30613;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 20px;
}