:root {
    --yellow: #f7b835;
    --yellowHover:#FFD700;
    --brown: #473108;
    --brownLight: #4A4A4A;
    --red:#E91E63;
    --redHover:#C2185B;
    --white:#ffffff;
}


body{
    background: var(--white);
}

/* cambiar la imagen de hero */
.hero {
    /* background: url('../img/descolonial.png') no-repeat center center/cover; */
}

/* Sección de Desarrollo */
/* Sección de Desarrollo */
.seccion-desarrollo {
    margin-top: 50px;;
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--blanco);
    color: var(--brownLight);
}

.seccion-desarrollo h2 {
    font-size: 24px;
    color: var(--brown);
    margin-bottom: 20px;
}

/* Bloques en Zigzag */
.bloque {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 30px 0px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bloque img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.bloque img:hover {
    transform: scale(1.05);
}

.texto {
    text-align: center;
    max-width: 600px;
}

.texto h3 {
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 1rem;
}

.texto p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--negro);
}


/* Responsive */
@media (min-width: 768px) {

    .seccion-desarrollo {
        text-align: center;
        padding: 1rem 14rem;
        background: var(--blanco);
        color: var(--brownLight);
    }
    

    .bloque {
        flex-direction: row;
        align-items:center;
        justify-content: center;
        gap: 1rem;
    }

    .bloque img {
        width: 35%;
        max-width: 300px;
        height: auto;
    }
    .bloque h3{
        line-height: 2rem;
        text-wrap:pre;
    }
    .bloque p {
        margin-top:-14px;
        font-size: 18px;
    }

    .texto {
        width: 55%;
        text-align: left;
    }

    /* Alternar imágenes y texto */
    .bloque:nth-child(even) {
        flex-direction: row-reverse;
    }

   
   
}
@media (min-width: 1190px) {
    .seccion-desarrollo {
        text-align: center;
        padding: 1rem 14rem;
        background: var(--blanco);
        color: var(--brownLight);
    }
    

    .bloque {
        flex-direction: row;
        align-items:center;
        justify-content: center;
        gap: 1rem;
    }

    .bloque img {
        width: 45%;
        max-width: 300px;
        height: auto;
    }
    .bloque h3{
        line-height: 2rem;
        text-wrap:pre;
    }
    .bloque p {
        margin-top:-14px;
        font-size: 18px;
    }

    .texto {
        width: 55%;
        text-align: left;
    }

    /* Alternar imágenes y texto */
    .bloque:nth-child(even) {
        flex-direction: row-reverse;
    }
}