/* estilo.css
   Estilo del Carrusel - /1/
   Nolan Tejada - Plantilla Web Genial */

body {
    margin: 0;
    padding: 0;
    font-family: "Trebuchet MS", sans-serif;
    background-color: #ffffff;
}

.carrusel-contenedor {
    width: 800px;
    height: 200px;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    padding:3px;
    margin:3px;  
    
}

.carrusel-pista {
    display: flex;
    height: 100%;
    transition: transform 0.7s ease-in-out;
    will-change: transform;
}

.carrusel-item {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    box-sizing: border-box;
    padding: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding:3px;
    margin:3px;  
    
}

.carrusel-item img {
    width: 200px;
    height: 200px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;

    
}

.carrusel-item a {
    display: block;
    text-decoration: none;

    
}

.carrusel-texto {
    margin: 8px 0 0 0;
    text-align: center;
    color: #000000;
    font-size: 16px;
}

.carrusel-texto a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.carrusel-texto a:hover {
    color: #e63946;
}
