/*  1. GERAL */
.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 5% 100px 5%;
    gap: 80px; 
}

.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

.brand-block h2 {
    font-family: 'Poppins', sans-serif;
    color: #f5f5f5;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

/*  2. LOGOS */
.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap; 
}

.logos-container img {
    max-height: 140px; 
    width: auto;
}

/*  3. CORES */
.colors-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.color-box {
    width: 160px;
    height: 110px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); 
    transition: transform 0.2s ease;
}

.color-box:hover {
    transform: scale(1.05); 
}

.bg-orange { background-color: #FC4C02; }
.bg-white  { background-color: #F5F5F5; }
.bg-dark   { background-color: #1C1C1C; }

.text-white  { color: #f5f5f5; }
.text-black  { color: #0a0a0a; }
.text-orange { color: #FC4C02; }

/*  4. DOWNLOAD */
.block-download {
    margin-top: -20px; 
}

.btn-download {
    background-color: #f5f5f5;
    color: #fc4c02;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-download:hover {
    transform: scale(1.05);
    background-color: #f5f5f5; 
}

/*  RESPONSIVIDADE GERAL */

/*  1. TABLETS NA VERTICAL  */ 
@media (max-width: 900px) {
    .brand-section {
        gap: 60px; 
    }

    .brand-block h2 {
        font-size: 2rem; 
        margin-bottom: 30px;
    }

    .logos-container {
        gap: 40px; 
    }

    .logos-container img {
        max-height: 100px; 
    }
    
    .colors-container {
        gap: 20px;
    }

    .color-box {
        width: 140px; 
        height: 100px;
        font-size: 1.1rem;
    }
}

/*  1. CELULARES  */ 
@media (max-width: 600px) {
    .brand-section {
        padding: 40px 5% 80px 5%; 
        gap: 50px;
    }

    .brand-block h2 {
        font-size: 1.8rem;
    }

    .logos-container {
        display: flex;
        flex-direction: row; 
        flex-wrap: wrap; 
        justify-content: center; 
        align-items: center;
        gap: 20px; 
        margin-top: 10px; 
        width: 100%; 
    }

    .logos-container img {

        max-height: clamp(60px, 15vw, 80px); 
        width: auto; 
        object-fit: contain;
    }

    .colors-container {
        gap: 15px;
    }

    .color-box {
        width: 120px; 
        height: 90px;
        font-size: 1rem;
    }

    .btn-download {
        font-size: 1.1rem;
        padding: 15px 30px;
        text-align: center;
        width: 100%; 
        max-width: 300px; 
    }
}