:root {
    --uniforma-bg: #fbf8f4;
    --uniforma-bg-soft: #f7f3ee;
    --uniforma-text: #2b211b;
    --uniforma-muted: #6d625a;
    --uniforma-gold: #b77a2b;
    --uniforma-gold-dark: #8a5a20;
    --uniforma-border: #e4d8cc;
    --uniforma-white: #ffffff;
    --uniforma-footer-dark: #3a2718;
}

/* Ocultar footer nativo de Divi */
#main-footer,
.et-l--footer,
footer.et-l,
.et_builder_inner_content > footer {
    display: none !important;
}

.uniforma-footer,
.uniforma-footer * {
    box-sizing: border-box;
}

.uniforma-footer {
    width: 100%;
    background:
        radial-gradient(circle at 12% 0%, rgba(183, 122, 43, 0.22), transparent 34%),
        linear-gradient(135deg, #3a2718 0%, #2a1b11 48%, #1f140d 100%);
    color: var(--uniforma-white);
    padding: 34px 0 30px;
    position: relative;
    z-index: 5;
}

.uniforma-footer__container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 1fr 1.1fr;
    align-items: start;
    gap: 86px;
}

.uniforma-footer__brand {
    min-width: 0;
}

.uniforma-footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 20px;
}

.uniforma-footer__logo img {
    display: block;
    width: 255px;
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.uniforma-footer__brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-family: "Inter", Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
}

.uniforma-footer__column h3,
.uniforma-footer__social h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.uniforma-footer__column nav {
    display: grid;
    gap: 6px;
}

.uniforma-footer__column a {
    color: rgba(255, 255, 255, 0.82);
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.15;
    text-decoration: none;
    transition: color 0.2s ease;
}

.uniforma-footer__column a:hover {
    color: var(--uniforma-gold);
}

.uniforma-footer__icons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 2px 0 25px;
}

.uniforma-footer__icons a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: var(--uniforma-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.2s ease;
}

.uniforma-footer__icons a:hover {
    background: rgba(183, 122, 43, 0.16);
    transform: translateY(-1px);
}

.uniforma-footer__icons svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.uniforma-footer__copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

/* Tablet */
@media (max-width: 1180px) {
    .uniforma-footer__container {
        padding: 0 42px;
        grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
        gap: 48px;
    }

    .uniforma-footer__logo img {
        width: 220px;
    }
}

/* Tablet chica */
@media (max-width: 900px) {
    .uniforma-footer {
        padding: 42px 0 36px;
    }

    .uniforma-footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 38px 46px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .uniforma-footer {
        padding: 40px 0 34px;
    }

    .uniforma-footer__container {
        padding: 0 24px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .uniforma-footer__logo img {
        width: 200px;
    }

    .uniforma-footer__brand p {
        font-size: 16px;
    }

    .uniforma-footer__column h3,
    .uniforma-footer__social h3 {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .uniforma-footer__column nav {
        gap: 8px;
    }

    .uniforma-footer__column a {
        font-size: 14px;
    }

    .uniforma-footer__icons {
        gap: 18px;
        margin-bottom: 20px;
    }

    .uniforma-footer__copy {
        font-size: 12px;
    }
}