/* 
 * CSS - Majois E-commerce 
 * Hito 16: NOSOTROS
 */

.about-section {
    padding: 60px 0;
    min-height: 60vh;
}

.about-section h2.section-title {
    text-align: center;
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Zig-Zag Blocks (Estructura 70/30) */
.zigzag-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-text {
    flex: 7;
    /* Representa el 70% */
}

.zigzag-img {
    flex: 3;
    /* Representa el 30% */
}

.zigzag-text p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
    text-align: justify;
}

.zigzag-text p strong {
    color: var(--color-primary);
    font-weight: 700;
}

.zigzag-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .zigzag-row,
    .zigzag-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .zigzag-img {
        width: 100%;
    }
}
