/* Variables de color */
:root {
    --yellow: #f7b835;
    --yellowHover:#FFD700;
    --brown: #473108;
    --brownLight: #4A4A4A;
    --brownPastel: #e8e0d4;
    --red:#E91E63;
    --redHover:#C2185B;
    --white:#ffffff;
}

/* Reset */
* {
    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/tejer.png') no-repeat center center/cover; */
}

/* Estilos del Header */
/* header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(30, 58, 95, 1);
    padding: 1rem;
    transition: background 0.3s ease-in-out;
    z-index: 1000;
} */




/* Sección de Desarrollo */
/* Sección de Desarrollo */
.seccion-desarrollo {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--blanco);
}

.seccion-desarrollo  h2 {
    font-size: 1rem;
    color: var(--brown);
    margin-bottom: 1rem;
}
.seccion-desarrollo .contenido{
    display: flex;
    flex-direction: column;
    padding: 3rem 1rem;
    /* align-items: center; */
    gap: 1rem;
}
.seccion-desarrollo .contenido h2 {
    font-size: 1rem;
    color: var(--brown);
    margin-bottom: 1rem;
}

.seccion-desarrollo .contenido p {
    text-align: justify;
    font-size: 15px;
    color: var(--brown);
}

/* 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: 1.1rem;
    justify-content: center;
    color: var(--brownLight);
}

/* Responsive */
@media (min-width: 768px) {

    .seccion-desarrollo .contenido{
        padding: 0rem 15rem;
    }
    .seccion-desarrollo  h2 {
        font-size: 24px;
        color: var(--brown);
        margin-bottom: 2rem;
    }

    .seccion-desarrollo .contenido h2 {
        font-size: 24px;
        color: var(--brown);
        margin-bottom: 1rem;
    }
    .seccion-desarrollo .contenido p {
        text-align: justify;
        font-size: 1rem;
        color: var(--brown);
    }

    .bloque {
        opacity: 0; /* Inicialmente invisible */
        transform: scale(1.2); /* Imagen ligeramente agrandada al inicio */
        transition: opacity 0.5s ease, transform 0.5s ease; /* Transición suave */

        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    .bloque.visible {
        opacity: 1; /* Se hace visible */
        transform: scale(1); /* Escala normal (efecto de alejamiento) */
    }
    
    .bloque img {
        width: 40%; /* Ajusta según necesites */
        max-width: 350px; /* Opcional: limita el tamaño */
        display: block;
    }

    /* .bloque img {
        width: 40%;
        max-width: 350px;
    } */

    .texto {
        width: 50%;
        text-align: justify;
    }

    /* Alternar imágenes y texto */
    .bloque:nth-child(even) {
        flex-direction: row-reverse;
    }


    
    
   /* Contenedor del footer */
    /* Contenedor del footer */
    /* Contenedor del footer */
}

