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

body {
   /* font-family: Arial, sans-serif;
    background-color: #f5f5f5; */
}

.catalogo-container {
    width: 100%;
    padding: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.catalogo {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    flex: 1;
}

.catalogo::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.producto {
    flex: 0 0 auto;
    width: 200px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.producto:hover {
    transform: translateY(-5px);
}

.producto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.producto h3 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #333;
}

.producto p {
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2em;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 1;
}

.nav-btn:hover {
     background-color: #f0f0f0;  
	 
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}

.prev-btn {
    margin-right: 5px;
}

.next-btn {
    margin-left: 5px;
}

@media (max-width: 768px) {
    .producto {
        width: 160px;
    }
    
    .producto img {
        height: 160px;
    }

    .nav-btn {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

.carousel-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 5px;
}

.next {
    right: 5px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 10px;
    }

    .carousel-slide img {
        height: 300px;
    }

    .carousel-button {
        width: 35px;
        height: 35px;
    }
} 