<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Encabezado */
header {
    background-color: #f7f6f6;
    color: #858585;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

header nav ul li a {
    color: #858585;
    text-decoration: none;
}

/* Carrusel de CategorÃ­as */
.categorias {
    padding: 20px;
    text-align: center;
}



/* Carrusel de CategorÃ­as mejorado */
.carrusel {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.slide {
    flex: 0 0 25%;
    padding: 10px;
    text-align: center;
}


.slide img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 5px;
}


.slide h6 {
    margin: 0;
    font-size: 10px;
    color: #333;
}

.flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px; /* TamaÃ±o adecuado de la flecha */
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    border-radius: 50%;
    user-select: none;
    padding: 0;
    line-height: 1;
}

.flecha-izquierda {
    left: 10px;
}

.flecha-derecha {
    right: 10px;
}



.flecha:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.flecha-izquierda {
    left: 1px;
}

.flecha-derecha {
    right: 1px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Efectos de transiciones */
.categorias h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

a.mi-enlace {
    color: #f46717;
    text-decoration: none;
}

a.mi-enlace:hover {
    text-decoration: underline;
}


.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
}

.cerrar {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    width: 90%; /* mÃ¡s ancho */
    max-width: 1000px;
    border-radius: 10px;
}

.card {
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.card-text strong {
    font-weight: bold;
    color: #F46717;
}

.precio {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745; /* Un verde similar al de precios en muchas tiendas */
    margin-bottom: 0.5rem;
}

.descripcion {
    color: #666;
    margin-bottom: 1rem;
}

.subcategoria {
    font-size: 0.9rem;
    color: #777;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 0.25rem; /* Bordes ligeramente redondeados */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
/*seccion 1 */
.banner-promocional {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
   height: 400px;
    max-height: 400px;
    min-height: 250px;
    overflow: hidden;
}

.banner-texto, .banner-imagen {
    flex: 1 1 50%;
    position: relative;
}

.banner-texto {
    background-image: url('../imagenes/img1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 30px;
    height: 100%; /* Agrega esta lÃ­nea */
}

.contenido-texto {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    text-align: left;
}

.contenido-texto h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contenido-texto p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn-promocion {
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid white;
}

.banner-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-avatar {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #f0f0f0;
        color: #333;
        text-decoration: none;
        font-size: 18px;
        transition: background-color 0.3s ease;
    }

    .login-avatar:hover {
        background-color: #dcdcdc;
    }

    .login-avatar i {
        pointer-events: none; /* evita clics sobre el icono */
    }
/* Responsivo */
@media (max-width: 768px) {
    .banner-promocional {
        flex-direction: column;
        max-height: none;
    }

    .banner-texto, .banner-imagen {
        flex: 1 1 100%;
        max-height: 250px;
    }

    .banner-imagen img {
        height: auto;
    }
}
</pre></body></html>