* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

/* Importar Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.taller-avion {
    margin-top: 15rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-inline: 10rem;
    box-sizing: border-box;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
}

.taller-avion .intro h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #233559;
    font-weight: 600;
    text-align: center;
}

.taller-avion .intro p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #444;
    font-weight: 400;
}

/* Lista izquierda - Imagen derecha */
.taller-avion .contenido {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: stretch;
    gap: 1.5rem;
}

.taller-avion .contenido .lista h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #233559;
    font-weight: 500;
}

.taller-avion .contenido .lista ol {
    padding-left: 1.5rem;
    line-height: 1.7;
    color: #333;
    font-size: 0.98rem;
}

.taller-section {
    display: grid;
    grid-template-columns: 40% 60%;
}

.taller-contenido {
    flex: 1;
}

.taller-contenido h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #233559;
    font-weight: 600;
}

.taller-contenido ol {
    line-height: 1.7;
    padding-left: 1.5rem;
    color: #333;
}

.taller-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.taller-imagen img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(35, 53, 89, 0.3);
}

/* Final centrado */
.taller-avion .final {
    line-height: 1.5;
    color: #233559;
    text-align: center;
    font-weight: 500;
    margin-top: 2rem;
}

@media screen and (max-width: 1400px) {
    .taller-section {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}

@media screen and (max-width: 600px) {
    .taller-avion {
        margin-top: 10rem;
        width: 100%;
        padding-inline: 3rem;
    }
}