.site-footer {
    width: 100%;
    background-color: #fff;
    color: #000;
    font-family: Arial, sans-serif;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: -69px;
}

/* Layout flexible */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;

    /* Permite que los elementos se acomoden en pantallas pequeñas */
}

.footer-column {
    width: 30%;
    min-width: 250px;

    /* Asegura que no se reduzca demasiado */
    margin-bottom: 20px;
}

.footer-column p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 20px;
}

.footer-plus {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin-top: 10px;
}

.footer-logo img {
    width: 110px;
    cursor: pointer;
    background-color: #ffffff;
}

/* === === == === === === === === === === === */
/* === Fix fondo gris en logo del footer === */
.site-footer .footer-logo,
.site-footer .footer-logo .btn-home {
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}

/* Aseguramos que el PNG se vea limpio */
.site-footer .footer-logo img {
    display: block;
    background: transparent !important;
    mix-blend-mode: normal !important;
}

/* === Eliminar outline y border del logo footer === */
.site-footer .footer-logo .btn-home {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.site-footer .footer-logo .btn-home:focus,
.site-footer .footer-logo .btn-home:hover,
.site-footer .footer-logo .btn-home:active {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    filter: none !important;
    cursor: pointer;
}

/* === === === === ===== === === === === */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    /* Se adapta en pantallas pequeñas */
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
}

/* Navegación y redes sociales */
.footer-nav,
.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.footer-nav a,
.footer-social a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.footer-email {
    font-weight: bold;
}

/* 🔹🔹🔹 MEDIA QUERIES 🔹🔹🔹 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-nav,
    .footer-social {
        flex-direction: column;
        gap: 5px;
    }

    .footer-plus {
        font-size: 18px;
    }
}

body {
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;

    /* Eliminamos padding del body */
}

#content-area {
    max-width: 100vw;
    padding: 20px;

    /* Padding fijo para móviles */
    box-sizing: border-box;
    margin: 200px auto 0;
}

/* Media query específico para móviles */
@media (max-width: 768px) {
    #content-area {
        padding: 20px 15px;

        /* Menos padding lateral */
    }

    #content-area h1 {
        font-size: clamp(2.5em, 7vw, 9em);

        /* Ligeramente más pequeño en móviles */
        letter-spacing: 1px;

        /* Reduce espaciado */
        margin: 15px 0;
        line-height: 1.2;

        /* Interlineado más compacto */
    }
}

@media (max-width: 480px) {
    #content-area h1 {
        font-size: clamp(2em, 9vw, 9em);

        /* Tamaño base más pequeño */
    }
}

/* Asegurar que el footer ocupa el 100% del ancho */
footer {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;

    /* Evita que cualquier padding afecte su ancho */
}

/* Btn Privacy Policy Footer */
.btn-privacy-policy {
    color: #000000;
    text-decoration: none;
}

/* Botones del menú principal (con bold) */
.footer-nav button {
    background: none;
    border: none;
    color: #000;
    font-weight: bold;

    /* solo estos con bold */
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

/* Botones discretos (sin bold) */
.footer-social button,
.footer-email button,
.btn-privacy-policy {
    background: none;
    border: none;
    color: #000;
    font-weight: normal;

    /* sin bold */
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

/* Hover para todos los botones */
.footer-nav button:hover,
.footer-social button:hover,
.footer-email button:hover,
.btn-privacy-policy:hover {
    color: #555;
    text-decoration: none;
}

/* Estilo para botones + */
.btn-plus {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s ease;
    padding: 0;
}

.btn-plus:hover {
    transform: scale(1.2);
    color: #555;
}