:root {
    --yellow: #f7b835;
    --yellowHover:#FFD700;
    --brown: #473108;
    --brownLight: #4A4A4A;
    --red:#E91E63;
    --redHover:#C2185B;
    --white:#ffffff;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
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 {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--blanco);
    color: var(--brownLight);
}

.seccion-desarrollo h2 {
    font-size: 24px;
    color: var(--brown);
    margin-bottom: 2rem;
}

/* Bloques en Zigzag */
.bloque {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.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 7rem;
        background: var(--blanco);
        color: var(--brownLight);
    }
    

    .bloque {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .bloque img {
        width: 40%;
        max-width: 350px;
    }

    .texto {
        width: 55%;
        text-align: left;
    }

    /* Alternar imágenes y texto */
    .bloque:nth-child(even) {
        flex-direction: row-reverse;
    }

   
   
}
