:root {
    --color-primario: #000000; 
    --color-secundario: #f4f4f4;
    --color-acento: #0070e0;
    --texto: #333333;
}
.no-select { user-select: none; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body { color: var(--texto); background-color: #ffffff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
/* Aquí también van tus .titulo-seccion y .btn-principal porque los usarás en todo el sitio */

/* ================== SECCIONES ================== */
.titulo-seccion {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 800;
}

.seccion-categorias, .seccion-productos {
    padding: 60px 5%;
}

/* ================== BOTON PRINCIPAL ================== */
.btn-principal {
    display: inline-block;
    background-color: var(--color-acento);
    color: white;
    padding: 16px 45px;
    margin-top: 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-principal:hover { 
    background-color: #005bb5;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 112, 224, 0.6);
}