/* --- SECCIÓN CSS: VARIABLES Y ESTILOS GENERALES --- */
:root {
    /* MODIFICAR COLORES: Estos son los colores base - puedes ajustar los tonos */
    --verde-cana: #8bc34a;          /* Verde caña */
    --celeste: #87ceeb;            /* Celeste */
    --azul-marino: #003366;        /* Azul marino */
    --accent-color: #ff9a3d;       /* Color de acento (naranja) */
    --light-color: #f8f9fa;        /* Color claro para fondos */
    --dark-color: #343a40;         /* Color oscuro para texto */
    --text-color: #333;            /* Color de texto principal */
    --text-light: #f8f9fa;         /* Color de texto en modo claro */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --section-padding: 80px 20px;
}

.dark-mode {
    /* MODIFICAR COLORES: Ajustes para modo oscuro con la paleta de colores */
    --verde-cana: #9ccc65;          /* Verde caña más claro para modo oscuro */
    --celeste: #a3d9ff;            /* Celeste más claro para modo oscuro */
    --azul-marino: #004080;        /* Azul marino más claro */
    --accent-color: #ff9a3d;       /* Color de acento se mantiene */
    --light-color: #1a1a2e;        /* Fondo oscuro */
    --dark-color: #eeeeee;         /* Texto claro */
    --text-color: #e6e6e6;         /* Texto principal claro */
    --text-light: #1a1a2e;         /* Texto en fondo oscuro */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    /* MODIFICAR COLORES: Títulos usando azul marino */
    color: var(--azul-marino);
}

.dark-mode h1, 
.dark-mode h2, 
.dark-mode h3, 
.dark-mode h4 {
    color: var(--celeste);
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    /* MODIFICAR COLORES: Línea decorativa usando verde caña */
    background-color: var(--verde-cana);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    display: inline-block;
    /* MODIFICAR COLORES: Botón usando azul marino */
    background-color: var(--azul-marino);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    /* MODIFICAR COLORES: Hover del botón usando celeste */
    background-color: var(--celeste);
    color: var(--azul-marino);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* --- SECCIÓN CSS: HEADER Y NAVEGACIÓN --- */
header {
    /* MODIFICAR COLORES: Header usando azul marino */
    background-color: var(--azul-marino);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* MODIFICAR LOGO: Estilos para el logo de la clínica */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: var(--border-radius);
}

nav a:hover {
    /* MODIFICAR COLORES: Hover de navegación usando verde caña */
    background-color: var(--verde-cana);
    color: var(--azul-marino);
}

.theme-toggle {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 20px;
    transition: var(--transition);
}

.theme-toggle:hover {
    /* MODIFICAR COLORES: Hover del botón tema usando verde caña */
    color: var(--verde-cana);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- SECCIÓN CSS: SECCIÓN 1 - PRESENTACIÓN --- */
#presentacion {
    padding: var(--section-padding);
}

.presentacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.presentacion-texto {
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    background-color: var(--light-color);
    /* MODIFICAR COLORES: Borde izquierdo usando celeste */
    border-left: 5px solid var(--celeste);
}

.presentacion-imagen img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* --- SECCIÓN CSS: SECCIÓN 2 - PROMOCIONES --- */
#promociones {
    padding: var(--section-padding);
    /* MODIFICAR COLORES: Fondo de sección usando celeste con transparencia */
    background-color: rgba(135, 206, 235, 0.1);
}

.promociones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.promocion-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.promocion-card:hover {
    transform: translateY(-10px);
}

.promocion-img {
    height: 200px;
    overflow: hidden;
}

.promocion-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.promocion-card:hover .promocion-img img {
    transform: scale(1.05);
}

.promocion-content {
    padding: 20px;
}

.promocion-tag {
    display: inline-block;
    /* MODIFICAR COLORES: Etiqueta de promoción usando verde caña */
    background-color: var(--verde-cana);
    color: var(--azul-marino);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* --- SECCIÓN CSS: SECCIÓN 3 - PRODUCTOS --- */
#productos {
    padding: var(--section-padding);
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.producto-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.producto-card:hover {
    transform: translateY(-5px);
}

.producto-img {
    height: 250px;
    overflow: hidden;
}

.producto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producto-content {
    padding: 20px;
}

.producto-precio {
    font-weight: 700;
    /* MODIFICAR COLORES: Precio usando azul marino */
    color: var(--azul-marino);
    font-size: 1.2rem;
    margin-top: 10px;
}

.dark-mode .producto-precio {
    color: var(--celeste);
}

/* Modal de producto */
.producto-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--light-color);
    max-width: 800px;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    /* MODIFICAR COLORES: Botón cerrar usando verde caña */
    background-color: var(--verde-cana);
    color: var(--azul-marino);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.modal-img {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.modal-img img {
    width: 100%;
    height: auto;
}



/* --- SECCIÓN CSS: ESTILOS PARA DESCUENTOS Y OFERTAS --- */

/* Etiquetas de oferta en productos */
.producto-oferta-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.oferta-2x1 {
    background-color: #ff4757;
    color: white;
}

.oferta-descuento {
    background-color: var(--verde-cana);
    color: var(--azul-marino);
}

/* Contenedor de precios con descuento */
.producto-precio-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.producto-precio-original {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.producto-precio-final {
    color: var(--azul-marino);
    font-weight: 700;
    font-size: 1.3rem;
}

.dark-mode .producto-precio-final {
    color: var(--celeste);
}

/* Productos destacados */
.producto-destacado {
    position: relative;
    border: 2px solid var(--verde-cana);
    animation: destacadoBorder 3s infinite;
}

/* Estilos para el modal con descuentos */
.modal-precio-container {
    margin-bottom: 10px;
}

.modal-precio-original {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.modal-precio-final {
    color: var(--azul-marino);
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 10px;
}

.dark-mode .modal-precio-final {
    color: var(--celeste);
}

.modal-oferta-tag {
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #ff4757;
    color: white;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: pulse 2s infinite;
}

.modal-oferta-desc {
    background-color: rgba(139, 195, 74, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--verde-cana);
    font-weight: 600;
    margin: 15px 0;
}

/* Animaciones */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes destacadoBorder {
    0%, 100% {
        border-color: var(--verde-cana);
        box-shadow: 0 0 10px rgba(139, 195, 74, 0.5);
    }
    50% {
        border-color: var(--celeste);
        box-shadow: 0 0 15px rgba(135, 206, 235, 0.7);
    }
}

/* Efecto de contador para ofertas */
.producto-img {
    position: relative;
    overflow: hidden;
}

.producto-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(255, 71, 87, 0.1) 100%);
    pointer-events: none;
}

.producto-destacado .producto-img::after {
    background: linear-gradient(135deg, transparent 50%, rgba(139, 195, 74, 0.15) 100%);
}





/* --- SECCIÓN CSS: SECCIÓN 4 - MISIÓN Y VISIÓN --- */
#mision-vision {
    padding: var(--section-padding);
    /* MODIFICAR COLORES: Fondo usando celeste con transparencia */
    background-color: rgba(135, 206, 235, 0.1);
}

.mision-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.mision-card, .vision-card {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.mision-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.mision-card::before {
    /* MODIFICAR COLORES: Borde superior misión usando azul marino */
    background-color: var(--azul-marino);
}

.vision-card::before {
    /* MODIFICAR COLORES: Borde superior visión usando verde caña */
    background-color: var(--verde-cana);
}

.mision-card i, .vision-card i {
    font-size: 2.5rem;
    /* MODIFICAR COLORES: Iconos usando azul marino */
    color: var(--azul-marino);
    margin-bottom: 20px;
}

.dark-mode .mision-card i,
.dark-mode .vision-card i {
    color: var(--celeste);
}

/* --- SECCIÓN CSS: SECCIÓN 5 - NUEVOS PRODUCTOS --- */
#nuevos-productos {
    padding: var(--section-padding);
}

.nuevos-productos-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 10px;
    scrollbar-width: thin;
    /* MODIFICAR COLORES: Scrollbar usando azul marino */
    scrollbar-color: var(--azul-marino) transparent;
}

.nuevos-productos-slider::-webkit-scrollbar {
    height: 8px;
}

.nuevos-productos-slider::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.nuevos-productos-slider::-webkit-scrollbar-thumb {
    /* MODIFICAR COLORES: Scrollbar thumb usando azul marino */
    background-color: var(--azul-marino);
    border-radius: 10px;
}

.nuevo-producto-card {
    flex: 0 0 auto;
    width: 300px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.nuevo-producto-img {
    height: 200px;
    overflow: hidden;
}

.nuevo-producto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.nuevo-producto-card:hover .nuevo-producto-img img {
    transform: scale(1.05);
}

.nuevo-producto-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.nuevo-producto-tag {
    display: inline-block;
    /* MODIFICAR COLORES: Etiqueta nuevo producto usando celeste */
    background-color: var(--celeste);
    color: var(--azul-marino);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    align-self: flex-start;
    font-weight: 600;
}

/* --- SECCIÓN CSS: FOOTER --- */
footer {
    /* MODIFICAR COLORES: Footer usando azul marino */
    background-color: var(--azul-marino);
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-links h3, .footer-contacto h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--verde-cana);
    padding-left: 5px;
}

.footer-contacto p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contacto i {
    margin-right: 10px;
    /* MODIFICAR COLORES: Iconos contacto usando verde caña */
    color: var(--verde-cana);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Iconos sociales */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /* MODIFICAR COLORES: Fondos iconos sociales usando celeste */
    background-color: var(--celeste);
    color: var(--azul-marino);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    /* MODIFICAR COLORES: Hover iconos sociales usando verde caña */
    background-color: var(--verde-cana);
    transform: translateY(-3px);
}





/* --- SECCIÓN CSS: BANNER PUBLICITARIO PRINCIPAL --- */
.banner-publicitario {
    background: linear-gradient(135deg, var(--azul-marino) 0%, var(--verde-cana) 100%);
    color: white;
    padding: 60px 0;
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.banner-publicitario::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.banner-texto {
    flex: 1;
    animation: slideInLeft 1s ease-out;
}

.banner-oferta {
    display: inline-block;
    background-color: var(--verde-cana);
    color: var(--azul-marino);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-titulo {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-descripcion {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 500px;
}

.banner-btn {
    display: inline-block;
    background-color: white;
    color: var(--azul-marino);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-btn:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.banner-imagen {
    flex: 1;
    animation: slideInRight 1s ease-out;
}

.banner-imagen img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.banner-imagen img:hover {
    transform: scale(1.05);
}

/* --- SECCIÓN CSS: BANNER ANIMADO DE TEXTO --- */
.banner-animado {
    background-color: var(--verde-cana);
    color: var(--azul-marino);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    margin: 30px 0;
    border-top: 3px solid var(--azul-marino);
    border-bottom: 3px solid var(--azul-marino);
}

.banner-animado-contenido {
    display: flex;
    animation: scrollBanner 25s linear infinite;
    white-space: nowrap;
}

.banner-animado-contenido span {
    padding: 0 40px;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.banner-animado-contenido span::before {
    content: "•";
    margin-right: 10px;
    font-size: 1.5rem;
}

.banner-animado-contenido span::after {
    content: "•";
    margin-left: 10px;
    font-size: 1.5rem;
}

/* --- SECCIÓN CSS: ANIMACIONES --- */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- SECCIÓN CSS: RESPONSIVE PARA BANNER --- */
@media (max-width: 992px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-texto, .banner-imagen {
        width: 100%;
    }
    
    .banner-titulo {
        font-size: 2rem;
    }
    
    .banner-descripcion {
        margin: 0 auto 25px;
    }
}

@media (max-width: 768px) {
    .banner-publicitario {
        padding: 40px 0;
    }
    
    .banner-titulo {
        font-size: 1.8rem;
    }
    
    .banner-oferta {
        font-size: 1rem;
    }
    
    .banner-animado-contenido span {
        font-size: 1.1rem;
        padding: 0 25px;
    }
}

@media (max-width: 576px) {
    .banner-titulo {
        font-size: 1.5rem;
    }
    
    .banner-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .banner-animado-contenido span {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}

/* Efecto de brillo intermitente para el banner animado */
.banner-animado-contenido span:nth-child(odd) {
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}











/* --- SECCIÓN CSS: MEDIA QUERIES PARA RESPONSIVIDAD --- */
@media (max-width: 992px) {
    .presentacion-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    
    nav.active {
        max-height: 300px;
        margin-top: 20px;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav li {
        margin: 10px 0;
    }
    
    .theme-toggle {
        margin-left: auto;
    }
    
    .mision-card, .vision-card {
        padding: 30px 20px;
    }
    
    /* Ajustes logo en móviles */
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .presentacion-texto, .mision-card, .vision-card {
        padding: 20px;
    }
    
    .promociones-grid, .productos-grid {
        grid-template-columns: 1fr;
    }
    
    .nuevo-producto-card {
        width: 260px;
    }
    
    /* Ajustes logo en móviles pequeños */
    .logo {
        gap: 10px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 35px;
    }
}