/*  1. LINES */
.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
}

.team-header h2 {
    font-family: 'Poppins', sans-serif;
    color: #f5f5f5;
    font-size: clamp(1.8rem, 5vw, 2.5rem); 
    font-weight: 700;
    margin-bottom: 20px;
}

.team-header p {
    font-family: 'Poppins', sans-serif;
    color: #f5f5f5;
    font-size: 1rem;
    line-height: 1.6;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

.player-card {
    border-radius: 7px;
    overflow: hidden;
    border: 2px solid #fc4c02;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; 
}

.player-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 10px 25px rgba(252, 76, 2, 0.3); 
}

.player-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end; 
}

.player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; 
}

.player-info {
    background-color: #fc4c02;   
    padding: 15px 20px;
    text-align: left;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 10px;
    flex-grow: 1; 
}

.player-text {
    display: flex;
    flex-direction: column; 
    word-break: break-word; 
}

.player-info h3 {
    font-family: 'Poppins', sans-serif;
    color: #f5f5f5;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}

.player-info span {
    font-family: 'Poppins', sans-serif;
    color: #f5f5f5;
    font-size: 0.85rem;
    font-weight: 400;
}

.player-icon i {
    color: #f5f5f5;
    font-size: 1.5rem; 
    opacity: 0.8;
    transition: transform 0.2s, opacity 0.2s;
}

.player-card:hover .player-icon i {
    transform: scale(1.2);
    opacity: 1;
}


/*  2. CONQUISTAS */
.achievements-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5% 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.achievements-section h2 {
    font-family: 'Poppins', sans-serif;
    color: #f5f5f5;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.achievements-list {
    width: 100%;
    max-width: 800px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.achievement-item {
    background-color: #fc4c02;
    background-image: linear-gradient(rgba(255, 69, 0, 0.8), rgba(255, 69, 0, 0.8)), url('../img/times/image_7.png'); 
    background-size: auto 100%;
    background-position: center bottom;
    border-radius: 50px; 
    padding: 20px 40px;
    display: grid;
    grid-template-columns: auto auto 1fr; 
    gap: 30px; 
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-item:hover {
    transform: scale(1.03); 
}

.ach-colocacao {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.ach-colocacao i {
    color: #ffd700; 
    font-size: 1.5rem;
}

.ach-colocacao strong {
    font-size: 1.3rem;
    font-weight: 800;
    white-space: nowrap; 
}

.ach-campeonato {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    white-space: nowrap; 
}

.ach-info {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    text-align: right; 
}

/*  3. COMPETITIVO */
.competitive-section {
    background-color: #fc4c02; 
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.competitive-section .team-header {
    margin-bottom: 50px;
}

.competitive-section .team-header h2,
.competitive-section .team-header p {
    color: #ffffff; 
}

.competitive-cards-container {
    display: flex;
    gap: 30px;
    justify-content: center; 
    flex-wrap: wrap; 
    width: 100%;
    max-width: 1200px;
}

.player-card.competitive-card {
    border: none; 
    background-color: transparent; 
    flex: 0 1 calc(45% - 15px); 
    min-width: 350px; 
    max-width: 480px;
}

.competitive-card .player-photo {
    background-color: #000000; 
    border-radius: 16px 16px 0 0; 
}

.comp-info-bar {
    background-color: #0a0a0a; 
    padding: 20px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    border-radius: 0 0 16px 16px; 
}

.comp-text {
    text-align: left;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.comp-text h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}

.comp-text span {
    font-size: 0.9rem;
    font-weight: 400;
}

.comp-social {
    display: flex;
    gap: 15px; 
    align-items: center;
}

.comp-social a {
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.2s;
}

.comp-social a:hover {
    color: #fc4c02; 
}

/*  4. INFLUÊNCIA */
.influ-section {
    background-color: #f5f5f5;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.influ-header h2 { color: #0a0a0a !important; }
.influ-header p { color: #1c1c1c !important; }

.influ-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.influ-card {
    border: none;
    background-color: #0a0a0a;
}

.influ-info-bar {
    background-color: #0a0a0a; 
    padding: 20px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    border-radius: 0 0 12px 12px; 
    width: 100%;
    box-sizing: border-box;
}

.influ-name {
    display: flex;
    align-items: center;
}

.influ-name h3 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.influ-social {
    display: flex;
    gap: 15px; 
    align-items: center;
}

.influ-social a {
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.influ-social a:hover {
    color: #fc4c02; 
    transform: scale(1.2); 
}

/*  4. EM BREVE */
.soon-section {
    background-color: #0d0d0d; 
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.soon-section .team-header {
    margin-bottom: 40px;
}

.soon-section .team-header h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin: 0;
}

.soon-logos {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: nowrap; 
gap: 30px;
max-width: 1000px;
width: 100%;
}

.soon-logos img {
max-height: 40px; 
width: auto;
 opacity: 0.5;
transition: opacity 0.3s ease, transform 0.3s ease;
}

.soon-logos img:hover {
    opacity: 1; 
    transform: scale(1.1); 
}

/*  RESPONSIVIDADE GERAL */

/*  1. NOTEBOOKS E TABLETS */
@media (max-width: 1200px) {
    /* LEAGUE OF LEGENDS*/
    .player-info h3 { font-size: 1.2rem; } 
    .player-info span { font-size: 0.8rem; }
    
    /* INFLUÊNCIA*/
    .influ-name h3 { font-size: 1.2rem; }
}

/*  2. TABLETS NA VERTICAL */
@media (max-width: 900px) {
    /* HEADER*/
    .team-header {
        max-width: 650px; 
        padding: 0 15px; 
    }

    /* LEAGUE OF LEGENDS */
    .players-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }
    .player-info h3 { font-size: 1.5rem; } 
    .player-info span { font-size: 1rem; }

    /* CONQUISTAS */
    .achievement-item {
        padding: 15px 20px;
        gap: 15px;
    }
    .ach-colocacao strong { font-size: 1.1rem; }
    .ach-campeonato { font-size: 1.1rem; white-space: normal; } 
    .ach-info { font-size: 0.85rem; }

    /* COMPETITIVO */
    .player-card.competitive-card {
        min-width: unset; 
        flex-basis: calc(50% - 15px);
    }

    /* INFLUÊNCIA*/
    .influ-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* EM BREVE*/
    .soon-logos { flex-wrap: wrap; }
}

/*  3. CELULARES */
@media (max-width: 600px) {
    /* GERAL*/
    .team-section, .achievements-section, .competitive-section, .influ-section, .soon-section {
        padding: 50px 15px; 
    }
    
    .team-header { padding: 0; }

    .team-header h2, .achievements-section h2, .soon-section .team-header h2 { 
        font-size: 1.8rem; 
        text-align: center;
    }

    /* LEAGUE OF LEGENDS*/
    .players-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 12px; 
    }
    
    .player-card { 
        width: 100%; 
        max-width: none;
    }

    .player-info {
        padding: 10px 12px; 
        gap: 5px;
    }
    
    .player-info h3 { 
        font-size: 1rem; 
    }
    
    .player-info span { 
        font-size: 0.7rem; 
    }

    .player-icon i {
        font-size: 1.1rem; 
    }

    /* CONQUISTAS*/
    .achievement-item {
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 10px;
        border-radius: 20px;
    }
    .ach-colocacao { justify-content: center; }
    .ach-info { text-align: center; }

    /* COMPETITIVO*/
    .competitive-cards-container { 
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px; 
    }
    .player-card.competitive-card {
        width: 100%;
        max-width: none;
        min-width: unset;
    }

    .comp-info-bar {
        padding: 10px;
        flex-direction: column; 
        text-align: center;
        gap: 10px;
    }

    .comp-text {
        text-align: center; 
    }

    .comp-text h4 { font-size: 1.1rem; } 
    .comp-text span { font-size: 0.75rem; }

    .comp-social {
        justify-content: center; 
        gap: 12px;
    }

    .comp-social a { font-size: 1.1rem; } 
    /* INFLUÊNCIA*/
    .influ-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px; 
    }
    
    .influ-card { width: 100%; }
    
    .influ-info-bar {
        padding: 10px; 
        flex-direction: column; 
        gap: 8px;
    }
    
    .influ-name h3 { font-size: 1rem; }
    .influ-social a { font-size: 1rem; }

    /* EM BREVE */
    .soon-logos img { max-height: 30px; }
}