/* ============================================
   MARCAS - ESTILOS ESPECÍFICOS
   HELADOS CARRETERO
   ============================================ */

/* ----- HERO ----- */
.marcas-hero {
    background: linear-gradient(135deg, #1a3a2e 0%, #2d6a4f 100%);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 74px;
}

.marcas-hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 12px;
}

.marcas-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
}

/* ----- DETALLE DE MARCA ----- */
.marcas-detalle {
    padding: 60px 0;
    background: #ffffff;
}

.marca-detalle {
    padding: 60px 0;
}

.marca-detalle:first-of-type {
    padding-top: 0;
}

.marca-detalle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.marca-detalle.reverse .marca-detalle-grid {
    direction: rtl;
}

.marca-detalle.reverse .marca-detalle-grid > * {
    direction: ltr;
}

/* ----- LOGO DE MARCA ----- */
.marca-detalle-logo {
    margin-bottom: 16px;
}

.marca-detalle-logo img {
    height: 70px;
    width: auto;
}

/* ----- INFORMACIÓN DE MARCA ----- */
.marca-detalle-info h2 {
    font-size: 2.2rem;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.marca-detalle-info p {
    color: #666666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.marca-detalle-info strong {
    color: #2d6a4f;
}

/* ----- CIFRAS DE MARCA ----- */
.marca-detalle-cifras {
    display: flex;
    gap: 40px;
    margin: 24px 0 20px;
}

.cifra {
    text-align: center;
}

.cifra-numero {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d6a4f;
    font-family: 'Playfair Display', serif;
}

.cifra-label {
    font-size: 0.85rem;
    color: #666666;
}

/* ----- BOTONES DE MARCA ----- */
.marca-detalle-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ----- IMAGEN DE MARCA (más pequeña) ----- */
.marca-detalle-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.marca-detalle-imagen img {
    width: 80%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.marca-detalle-imagen img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ----- SEPARADOR ----- */
.separador-marcas {
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.separador-marcas::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #d8e9e0;
}

.separador-texto {
    background: #ffffff;
    padding: 0 20px;
    font-size: 2rem;
    font-weight: 300;
    color: #2d6a4f;
    position: relative;
    z-index: 1;
}

/* ----- DISTRIBUCIÓN DESTACADA ----- */
.distribucion-destacada {
    margin-top: 40px;
    padding: 50px 40px;
    background: #fdf6ed;
    border-radius: 16px;
    text-align: center;
    border: 2px dashed #d8e9e0;
}

.distribucion-icono {
    font-size: 2.5rem;
    color: #2d6a4f;
    margin-bottom: 12px;
}

.distribucion-content h3 {
    font-size: 1.8rem;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.distribucion-content p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.8;
}

.distribucion-content strong {
    color: #2d6a4f;
}

/* ============================================
   RESPONSIVE MARCAS
   ============================================ */

@media (max-width: 992px) {
    .marca-detalle-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .marca-detalle.reverse .marca-detalle-grid {
        direction: ltr;
    }
    
    .marca-detalle-cifras {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .marca-detalle-imagen img {
        width: 60%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .marcas-hero {
        padding: 120px 0 50px;
        margin-top: 64px;
    }
    
    .marcas-hero h1 {
        font-size: 2.2rem;
    }
    
    .marcas-hero p {
        font-size: 1.1rem;
    }
    
    .marca-detalle {
        padding: 40px 0;
    }
    
    .marca-detalle-info h2 {
        font-size: 1.8rem;
    }
    
    .marca-detalle-info p {
        font-size: 0.95rem;
    }
    
    .cifra-numero {
        font-size: 1.4rem;
    }
    
    .marca-detalle-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .marca-detalle-imagen img {
        width: 70%;
        max-width: 280px;
    }
    
    .distribucion-destacada {
        padding: 30px 20px;
    }
    
    .distribucion-content h3 {
        font-size: 1.4rem;
    }
    
    .distribucion-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .marcas-hero h1 {
        font-size: 1.8rem;
    }
    
    .marca-detalle-logo img {
        height: 50px;
    }
    
    .marca-detalle-info h2 {
        font-size: 1.5rem;
    }
    
    .marca-detalle-cifras {
        gap: 12px;
    }
    
    .cifra-numero {
        font-size: 1.2rem;
    }
    
    .marca-detalle-imagen img {
        width: 90%;
        max-width: 250px;
    }
}