body {
    background: #f9f9f9;
    font-family: 'Times New Roman', serif;
}

.productos-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 50px 0;
    padding-top: 50px; /* Reducido - el separador ya tiene su propio padding */
}

.producto-card {
    background: white;
    border-radius: 20px;
    width: 320px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: 0.2s;
}

.producto-card:hover {
    transform: translateY(-5px);
}

.producto-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
}

.producto-nombre {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

.producto-precio {
    color: #333;
    font-size: 20px;
    margin: 10px 0;
}

.producto-descripcion {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.btn-agregar {
    display: inline-block;
    padding: 10px 20px;
    background: black;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
}

.btn-agregar:hover {
    background: #333;
}

.footer {
    background-color: #2f2f2f;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 18px;
}

/* ========================================
   SEPARADOR DE GALERÍA - AJUSTADO
======================================== */
.gallery-separator {
    padding: 150px 50px 80px; /* Aumentado padding superior */
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.separator-line {
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.separator-title {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .productos-container {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
    }

    .producto-card {
        width: 90%;
        max-width: 350px;
    }

    .gallery-separator {
        padding: 100px 20px 60px; /* Ajustado para móvil */
        gap: 15px;
    }
    
    .separator-title {
        font-size: 20px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .gallery-separator {
        padding: 90px 15px 50px; /* Más compacto en móviles pequeños */
    }
    
    .separator-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .productos-container {
        padding: 20px 15px;
    }
}