/* Espaciadores verticales */
.spacer-10 { height: 10px; }
.spacer-20 { height: 20px; }
.spacer-30 { height: 30px; }
.spacer-40 { height: 40px; }
.spacer-50 { height: 50px; }
.spacer-100 { height: 100px; }

/* Espaciadores responsive */
.spacer-sm { height: 20px; }
.spacer-md { height: 40px; }
.spacer-lg { height: 80px; }

/*
@media (max-width: 768px) {
.spacer-sm { height: 10px; }
.spacer-md { height: 20px; }
.spacer-lg { height: 40px; }
*/

/*Estilos Departamentos*/

.departamentos-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.departamentos-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.departamento-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
    width: 140px;
}

.departamento-item:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.circle-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.departamento-item:hover .circle-icon {
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.departamento-name {
    text-align: center;
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}

/* Colores para cada departamento */
.frutas-verduras {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.carnes-pescados {
    background-color: #ffebee;
    color: #c62828;
}

.mayoreo {
    background-color: #e3f2fd;
    color: #1565c0;
}

.abarrotes {
    background-color: #fff3e0;
    color: #ef6c00;
}

.lacteos-huevo {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.vinos-licores {
    background-color: #e8eaf6;
    color: #303f9f;
}

/* Responsive */
@media (max-width: 768px) {
    .departamentos-container {
        gap: 20px;
    }
    
    .departamento-item {
        width: 110px;
    }
    
    .circle-icon {
        width: 80px;
        height: 80px;
    }
    
    .departamento-name {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .departamentos-container {
        gap: 15px;
    }
    
    .departamento-item {
        width: 90px;
    }
    
    .circle-icon {
        width: 70px;
        height: 70px;
    }
    
    .departamento-name {
        font-size: 11px;
    }
}
/*Fin Estilos Departamentos*/

/* Textos */

.texto-centrado {
    text-align: center;
}

/* Fin Textos */ 