﻿/* ══════════════════════════════════════
   FOOTER SLIM — PASTEL STYLE
══════════════════════════════════════ */
.sg-footer-slim {
    background-color: #f9f9ff; /* Blanco con un toque lavanda muy suave */
    padding: 30px 0 20px;
    border-top: 1px solid #eef0f8;
    color: #7a7a9a;
    font-size: 0.9rem;
}

.sg-footer__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Fila principal flexible */
.sg-footer__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

/* Marca con color pastel */
.sg-footer__brand {
    font-size: 1.1rem;
    color: #1a1a2e;
}

    .sg-footer__brand strong {
        color: #6C63FF; /* Tu color de marca pero en texto */
        font-weight: 800;
    }

/* Enlaces limpios */
.sg-footer__contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sg-footer__link {
    text-decoration: none;
    color: #6C63FF;
    font-weight: 600;
    transition: opacity 0.2s;
    opacity: 0.8;
}

    .sg-footer__link:hover {
        opacity: 1;
        text-decoration: underline;
    }

.sg-footer__sep {
    color: #d1d1e9;
}

.sg-footer__loc {
    font-size: 0.85rem;
    color: #9a9ab0;
}

/* Línea final */
.sg-footer__bottom {
    text-align: center;
    border-top: 1px solid #f0f0f5;
    padding-top: 15px;
    font-size: 0.78rem;
    color: #b0b0c5;
    letter-spacing: 0.03em;
}

/* Adaptación a móviles */
@media (max-width: 768px) {
    .sg-footer__main {
        flex-direction: column;
        text-align: center;
    }

    .sg-footer__contact {
        justify-content: center;
    }
}
