/* Estilos para el footer */
.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0;
    font-family: 'CocoGothic', sans-serif;
    border-top: 1px solid #e1e1e1;
    margin-top: 40px;
    width: 100%;
    clear: both;
}

.my-content-footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.my-container-footer {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    color: #333;
    padding: 0 15px;
}

.my-container-footer h3 {
    font-family: 'CocoBiker', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.my-container-footer h3::first-letter {
    margin-left: -0.5px; /* Ajuste fino para la primera letra */
}

.my-container-footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #333;
}

.my-container-footer p {
    margin: 10px 0;
    color: #333;
    line-height: 1.6;
}

/* Estilos para la información de contacto */
.contact-info {
    display: flex;
    align-items: center;
    margin: 12px 0;
    color: #333;
    line-height: 1.6;
}

.contact-icon {
    margin-right: 10px;
    color: #666;
    width: 20px;
    text-align: center;
}
/*
.contact-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}
*/
.contact-link {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: #007bff;
    text-decoration: none;
    white-space: nowrap;
}


.contact-link:hover {
    text-decoration: underline;
    color: #0056b3;
}


/* Responsive */
@media (max-width: 768px) {
    .my-content-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .my-container-footer {
        width: 100%;
        max-width: 300px;
    }
    
    .my-container-footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .contact-link {
        font-size: 0.95rem;
    }
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 480px) {
    .my-container-footer h3 {
        font-size: 1.3rem;
    }
    
    .my-container-footer p {
        font-size: 0.9rem;
    }
}

/* Contacto */
.contact-info {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    color: #007bff;
    font-size: 1.2rem;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    white-space: nowrap; /* Evita que el email se corte */
}

.contact-link:hover {
    text-decoration: underline;
    color: #0056b3;
}


/* ============================= */
/* Sucursales - Footer (FINAL)   */
/* ============================= */

.sucursal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

/* Reset total de cualquier icono previo */
.sucursal-link::before {
    content: none;
}

/* Hover */
.sucursal-link:hover {
    transform: translateX(4px);
}

/* 🏠 Casa central */
.sucursal-link.sucursal-casa::before {
    content: "🏠";
    font-size: 1.4rem;
}

/* 📍 Sucursales normales */
.sucursal-link.sucursal-ubicacion::before {
    content: "📍";
    font-size: 1.4rem;
}














.footer-section.my-container-footer p a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.footer-section.my-container-footer a.link-inicio::before {
    content: '🏠';
}

.footer-section.my-container-footer a.link-gres::before {
    content: '🧱';
}

.footer-section.my-container-footer a.link-recomendaciones::before {
    content: '💡';
}

.footer-section.my-container-footer a.link-envios::before {
    content: '🚚';
}

.footer-section.my-container-footer a.link-devolucion::before {
    content: '↩️';
}

.footer-section.my-container-footer a.link-quienes::before {
    content: '👥';
}

.footer-section.my-container-footer p a:hover {
    opacity: 0.8;
    transform: translateX(3px);
    transition: all 0.2s ease;
}


