* {
    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;
    }
}


/* ejmeplo de carursel AVION */

/* ejmeplo de carursel AVION */

/* ----- CARRUSEL AVIONES ---- */

.aviones-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    overflow: hidden;
}

.avion-slider {
    display: flex;
    gap: 1rem;
    transition: transform 0.6s ease;
}

.avion-slide {
    min-width: calc(50% - 0.5rem); /* 2 imágenes visibles */
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.avion-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.avion-slide:hover img {
    transform: scale(1.05);
}

/* Botones */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid #B52E23;
    color: #B52E23;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: 0.3s ease;
}

.slider-btn:hover {
    background: #B52E23;
    color: white;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Tablets */
@media (max-width: 768px) {
    .avion-slide {
        min-width: 70%;
    }

    .avion-slide img {
        height: 220px;
    }
}

/* Celulares */
@media (max-width: 480px) {
    .avion-slide {
        min-width: 100%;
    }

    .avion-slide img {
        height: auto;
        object-fit: contain;
        background: #000;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* Celulares */
@media (max-width: 480px) {

    .avion-slide {
        min-width: 100%;
        max-width: 100%;
    }

    .avion-slide img {
        width: 100%;
        height: 180px;            
        object-fit: cover;        
        background: none !important;
    }

    .slider-btn {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
}