* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    transition: background-color 0.4s ease, color 0.4s ease;
    line-height: 1.4;
    display: flex;
    justify-content: center;
}

/* El envoltorio maestro que encuadra y centra toda la tienda */
.wrapper-tienda {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    background-color: var(--bg-main);
    transition: background-color 0.4s ease;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reducción global de espaciado vertical de las secciones */
main section, 
#hero, 
#destacados, 
#ofertas, 
#taller, 
#lubricentro, 
#contacto {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#hero {
    padding-top: 50px !important;
    padding-bottom: 40px !important;
}

.section-title {
    text-align: center;
    margin-bottom: 25px !important;
}

.section-title span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 6px;
}

.section-title h2 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
}