* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.contIndex {
    background-color: #f2f2f2;
}

/* Carrusel */
.contIndex .carrusel {
    width: 100%;
    max-width: 120em;
    overflow-x: hidden;
    margin-top: 70px;
    gap: 10px;
    padding: 1px;
    background-color: #f2f2f2;
}

.contIndex .carruselImagenes {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    transition: all .5s ease;
    transform: translateX(0%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .4);
    width: 100%;
}

.contIndex .carruselImagenes .imgCarrusel {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    object-fit: cover;

}

.contIndex .puntos {
    width: 20%;
    margin: 0 auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 20px;
    list-style-type: none;
}

.contIndex .punto {
    transition: all .3s ease;
    width: 10px;
    height: 10px;
    background-color: #09a2cc;
    margin: 0 1em;
    padding: .6em;

}

.contIndex .punto:hover {
    transition: all 1s ease;
    transform: scale(1.1) rotate(90deg);
    border-radius: 16px;
}

.contIndex .punto.activo {
    transition: all .3s ease;
    transform: scale(1.3) rotate(90deg);
    box-shadow: 0 0 5px #3897b7;
    border-radius: 16px;

}


/* Botones principales */
.contIndex .acciones-principales {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 15px;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .4);
}

.linkPrincipales {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: 1;

}

.linkPrincipales a {
    text-decoration: none;
    padding: 1% 3% 1% 1%;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-wrap: nowrap;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #3897b7;
    color: #fff;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    transition: all .4s ease;
}

.linkPrincipales a:hover {
    transition: all .4s ease;
    background-color: #3897b7;
    transform: translateY(-3px);
    box-shadow: 0 0 15px #2d95b8;

}

.acciones-principales img {
    height: 60px;
    width: 100px;
}

/* Productos */
.productos {
    padding: 40px 40px;
    text-align: center;
}

.productos h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.galeriaWrapper {
    width: 100%;
    overflow: hidden;
}

.galeriaCarruselProducto,
.galeriaCarruselVarios {
    display: flex;
    flex-flow: row nowrap;
    transition: all .5s ease;
    width: 100%;
}

.slideProducto {
    flex: 0 0 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    min-width: 100%;
    /* cada slide ocupa todo el ancho */
}

.galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}


.producto {
    width: 200px;
    max-width: none;
    height: 250px;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
    transition: all .3s ease;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow-y: scroll;




}

::-webkit-scrollbar {
    display: none;
}

.producto img {
    width: 100%;
    height: 60%;
    border-radius: 6px;
}

.productos .puntosProductoD,
.puntosProductoV {
    width: 10%;
    margin: 20px auto 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 15px 0px;
    list-style-type: none;
    border-radius: 16px;
}

.productos .puntoProductoD,
.puntoProductoV {
    transition: all .3s ease;
    width: 10px;
    height: 10px;
    background-color: #09a2cc;
    margin: 0 1em;
    padding: .6em;
}

.productos .puntoProductoD:hover,
.puntoProductoV:hover {
    transition: all 1s ease;
    transform: rotate(90deg) scale(1.4);
    border-radius: 16px;
}

.productos .puntoProductoD.activo,
.puntoProductoV.activo {
    transition: all .3s ease;
    transform: scale(1.3) rotate(90deg);
    border-radius: 16px;

}


@media screen and (max-width:900px) {
    .linkPrincipales {
        display: flex;
        flex-direction: column;
        justify-content: center;

    }

    .linkPrincipales a {
        padding: 10px;
        margin: 5px;
        white-space: wrap;
    }

    .linkPrincipales a {
        margin: 5px;
        display: flex;
        align-items: center;
        /* centra verticalmente texto e imagen */
        justify-content: center;
        /* centra el contenido en horizontal */
        gap: 10px;
        background-color: #3897b7;
        color: #fff;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
        transition: all .4s ease;
    }


    .galeria {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .producto {
        width: 200px;
        height: 250px;
        font-size: .9em;
    }

    .producto p {
        padding: 0 5px;
        margin: 5px 0;
    }

    .producto img {
        width: 100%;
        height: 60%;
        padding: 0;
    }

}