.custom-footer {
    background: #2b2b2b;
    text-align: center;
    padding: 2.5rem 1rem;
}

/* Contenedor general centrado y compacto */
.custom-footer .footer-hero {
    max-width: 460px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

/* Marca: logo + nombre + tagline */
.custom-footer .brand {
    display: flex;
    align-items: center;
    gap: .75rem;
}

/* Imagen del logo */
.custom-footer .brand-logo-img {
    width: 44px;
    height: 44px;
    /* se recorta si no es cuadrada */
}

.custom-footer .brand-name {
    margin: 0;
    font-weight: 800;
    letter-spacing: .3px;
    color: #ffffff;
    /* texto negro */
}

.custom-footer .brand-tag {
    margin: 0;
    color: #ffffff;
    /* gris oscuro */
    font-size: .95rem;
}

/* Botón Aviso de Privacidad */
.custom-footer .cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgb(255, 255, 255);
    background: rgba(0, 0, 0, .05);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease;
}

.custom-footer .cta:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, .08);
}

.custom-footer .cta:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px #2563eb;
}

/* Responsive */
@media(max-width:576px) {
    .custom-footer {
        padding: 2rem 1rem;
    }

    .custom-footer .brand-name {
        font-size: 1.35rem;
    }
}