﻿/* ==========================================================================
   LAYOUT
   ========================================================================== */

.section--padding {
    margin-top: 0;
    padding-top: 15px;
    background: #fff;
}

.shop__product--wrapper {
    padding: 20px;
}


/* ==========================================================================
   BRANDS - CONTENEDOR
   ========================================================================== */

.brands-section {
    margin-top: 3rem;
    padding: 18px;
    background: #fff;
    border-radius: 24px;
}


/* ==========================================================================
   TÍTULOS
   ========================================================================== */

.h1 {
    margin: 16px 0 8px;
    color: var(--color-tenue);
    font-size: clamp(2rem, 1.8vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: center !important;
}

.p-guia {
    margin: 30px 0 8px;
    color: #374151;
    font-size: clamp(1.9rem, 1.7vw, 2.4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: center;
}

.section-subtitle {
    margin-bottom: 18px;
    color: #6b7280;
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
}

.section-divider {
    margin-bottom: 18px;
    border: 0;
    border-top: 1px solid #ececec;
}


/* ==========================================================================
   BRANDS - GRID
   ========================================================================== */

.brands-row-grid > .col {
    display: flex;
}


/* ==========================================================================
   BRANDS - TARJETA
   ========================================================================== */

.brand-card--row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 90px;
    padding: 14px 10px;
    color: inherit;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 14px;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

    .brand-card--row:hover {
        border-color: #c7d2fe;
        box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
        transform: translateY(-1px);
    }


/* ==========================================================================
   BRANDS - LOGO / NOMBRE
   ========================================================================== */

.brand-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 34px;
}

.brand-name {
    margin-top: 4px;
    color: #374151;
    font-size: 1.5rem;
    line-height: 1.7;
}


/* ==========================================================================
   PROCESO / PIE
   ========================================================================== */

.process-section {
    margin-top: 30px;
}

.process-title {
    margin-bottom: 12px;
    color: #1f2937;
    font-size: clamp(2rem, 1.8vw, 2.6rem);
    font-weight: 700;
}

.process-text {
    margin-bottom: 14px;
    color: #4b5563;
    font-size: 1.6rem;
    line-height: 1.8;
}

    .process-text strong {
        color: #0f3b75;
    }

.process-image {
    margin-top: 22px;
    overflow: hidden;
    border-radius: 16px;
}

    .process-image img {
        display: block;
        width: 100%;
        border-radius: 16px;
        transition: transform 0.4s ease;
    }

        .process-image img:hover {
            transform: scale(1.02);
        }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 575.98px) {
    .brands-section {
        padding: 14px;
        border-radius: 18px;
    }

    .brand-card--row {
        min-height: 80px;
        padding: 10px;
    }

    .brand-logo-box {
        width: 42px;
        height: 28px;
    }

    .brand-name {
        font-size: 1rem;
    }
}
