/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Barra de navegación */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 40px;
}

/* Carrusel */
.carousel {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 20px;
    bottom: 40px;
}

/* Tarjetas de categoría */
.category-card {
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.category-card img {
    height: 150px;
    object-fit: cover;
}

.category-card .card-body {
    padding: 1rem;
    background-color: #f8f9fa;
}

/* Tarjetas de producto */
.product-card {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-card img {
    height: 200px;
    object-fit: contain;
    padding: 20px;
}

.product-card .card-body {
    padding: 1rem;
}

.product-card .card-footer {
    border-top: none;
    padding: 0.75rem 1rem;
}

/* Pie de página */
footer {
    background-color: #2c3e50;
}

footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

footer ul li {
    margin-bottom: 0.5rem;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #007bff;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
    
    .carousel-caption {
        bottom: 20px;
        padding: 10px;
    }
    
    .carousel-caption h5 {
        font-size: 1rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .carousel-caption .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
}