:root {
    --color-celeste: #66C1D5;
    --color-plomo: #F9F9F9;
}

.tienda-body {
    background: #ffffff;
    font-family: system-ui, sans-serif;
}
/* --- PRESENTACIÓN --- */
.tienda-presentacion {
    background-color: #ffffff;
    width: 100%;
    position: relative;
}

.banda-azul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-color: var(--color-celeste);
    z-index: 1;
}

.franja-blanca-superior {
    position: relative;
    z-index: 3;
    background-color: #ffffff;
    width: 100%;
    padding: 40px 20px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0;
}

.titulo-flotante {
    background-color: #d14e68;
    color: white;
    padding: 15px 45px;
    border-radius: 15px;
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(209, 78, 104, 0.3);
    display: inline-block;
    max-width: fit-content;
    margin-bottom: -30px;
}

.presentacion-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 0 20px 40px 20px;
    background-color: #ffffff;
    margin-top: 150px;
}

.presentacion-imagen {
    flex: 1.2;
    max-width: 600px;
    width: 100%;
    margin-top: -80px;
}

    .presentacion-imagen img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        display: block;
    }

.presentacion-texto {
    flex: 1;
    padding-top: 0;
}

    .presentacion-texto p {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 17px;
        line-height: 1.8;
        color: #5B5E7C;
        margin-bottom: 15px;
        text-align: justify;
    }

@media (max-width: 992px) {
    .banda-azul {
        height: 180px;
    }

    .titulo-flotante {
        font-size: 22px;
        padding: 12px 30px;
        margin-bottom: -25px;
    }

    .presentacion-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

    .presentacion-imagen {
        width: 100%;
        max-width: 100%;
        margin-top: -60px;
    }
}

@media (max-width: 600px) {
    .banda-azul {
        height: 150px;
    }

    .titulo-flotante {
        font-size: 17px;
        padding: 10px 20px;
        margin-bottom: -20px;
    }

    .presentacion-container {
        margin-top: 30px;
    }

    .presentacion-imagen {
        margin-top: -40px;
    }

    .presentacion-texto p {
        font-size: 15px;
    }
}

/* --- PRODUCTOS --- */
.seccion-productos {
    background-color: var(--color-plomo);
    padding: 40px 20px 60px 20px;
    border-top: 1px solid #f0f0f0;
}

    .seccion-productos h2 {
        text-align: center;
        color: #1a2b4c;
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 40px;
    }

.carrusel-productos-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.carrusel-productos-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.producto-item {
    min-width: 33.3333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.producto-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

    .producto-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .producto-card .producto-titulo {
        padding: 18px 10px;
        font-size: 16px;
        font-weight: 600;
        color: #1a2b4c;
        background: #fff;
    }

.flecha-carrusel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    color: #d14e68;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

    .flecha-carrusel:hover {
        background: #f7f7f7;
    }

.flecha-izq {
    left: 10px;
}

.flecha-der {
    right: 10px;
}

/* --- VIDEOS --- */
.seccion-videos-tienda {
    background-color: #ffffff;
    padding: 50px 20px 60px 20px;
    border-top: 1px solid #f0f0f0;
}

.titulo-seccion-videos {
    text-align: center;
    color: #1a2b4c;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contenedor-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }

.video-thumbnail, .video-iframe-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    position: relative;
}

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .video-iframe-container iframe {
        width: 100%;
        height: 100%;
        display: block;
    }

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(208, 51, 92, 0.9);
    color: white;
    font-size: 40px;
    width: 70px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-card:hover .play-button-overlay {
    opacity: 1;
    background: #D0335C;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #1a2b4c;
    margin: 0;
}

/* --- CONTACTO --- */
.seccion-contacto {
    background-color: #ffffff;
    padding: 40px 20px 60px 20px;
    border-top: 1px solid #f0f0f0;
}

    .seccion-contacto h2 {
        text-align: center;
        color: #1a2b4c;
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 40px;
    }

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contacto-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacto-icon-box {
    background-color: #D0335C;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(208, 51, 92, 0.3);
}

    .contacto-icon-box img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

.contacto-item p {
    font-size: 16px;
    font-weight: 600;
    color: #1a2b4c;
    line-height: 1.4;
}

.barra-azul-inferior {
    background-color: #5bc0de;
    color: white;
    text-align: center;
    padding: 20px 20px;
    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .contenedor-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contacto-icon-box {
        width: 80px;
        height: 80px;
    }

        .contacto-icon-box img {
            width: 40px;
            height: 40px;
        }

    .barra-azul-inferior {
        font-size: 15px;
    }

    .contenedor-videos-grid {
        grid-template-columns: 1fr;
    }
}
