/* =========================
   FOOTER / BASE
========================= */

.atyc-footer {
    --footer-mouse-x: 50%;
    --footer-mouse-y: 50%;
    position: relative;
    padding: 5rem 0 0;
    background:
        linear-gradient(80deg,
            #2a1a12 0%,
            #3d2314 18%,
            #6b3a22 40%,
            #8b4d2e 58%,
            #5c2e18 78%,
            #1e1208 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Capa de textura grain sobre el fondo oscuro */
.atyc-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.035) 0.6px, transparent 0.6px),
        radial-gradient(rgba(0, 0, 0, 0.12) 0.4px, transparent 0.4px);
    background-size: 3px 3px, 7px 7px;
    background-position: 0 0, 1.5px 1.5px;
}

/* Glow interactivo por mouse */
.atyc-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at var(--footer-mouse-x) var(--footer-mouse-y),
            rgba(193, 120, 70, 0.14),
            transparent 38%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

/* =========================
   BACKGROUND COMPOSITION
========================= */

.atyc-footer__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.atyc-footer__shape {
    position: absolute;
    opacity: 0.35;
    filter: blur(40px);
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

.atyc-footer__shape--block-1 {
    top: -4%;
    left: 4%;
    width: 320px;
    height: 280px;
    border-radius: 48px;
    background: rgba(160, 80, 40, 0.55);
    animation: atycFooterFloatOne 11s ease-in-out infinite;
}

.atyc-footer__shape--block-2 {
    top: 30%;
    left: 12%;
    width: 260px;
    height: 340px;
    border-radius: 120px;
    background: rgba(100, 40, 20, 0.5);
    animation: atycFooterFloatTwo 13s ease-in-out infinite;
}

.atyc-footer__shape--block-3 {
    top: 5%;
    right: 8%;
    width: 300px;
    height: 260px;
    border-radius: 56px;
    background: rgba(140, 70, 30, 0.45);
    animation: atycFooterFloatThree 12s ease-in-out infinite;
}

.atyc-footer__shape--block-4 {
    right: 4%;
    bottom: 12%;
    width: 360px;
    height: 180px;
    border-radius: 90px;
    background: rgba(80, 30, 10, 0.55);
    animation: atycFooterFloatFour 14s ease-in-out infinite;
}

.atyc-footer__shape--circle-1 {
    top: 20%;
    right: 22%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(193, 130, 70, 0.18);
    background: rgba(255, 160, 80, 0.06);
    filter: blur(0px);
    opacity: 0.5;
    animation: atycFooterCirclePulse 8s ease-in-out infinite;
}

.atyc-footer__shape--circle-2 {
    bottom: 22%;
    right: 14%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(255, 180, 100, 0.10);
    background: rgba(255, 255, 255, 0.04);
    filter: blur(0px);
    opacity: 0.38;
    animation: atycFooterCirclePulse 10s ease-in-out infinite;
    animation-delay: 1.2s;
}

.atyc-footer__shape--line-1 {
    top: 10%;
    left: 49%;
    width: 1px;
    height: 60%;
    background: rgba(255, 180, 100, 0.09);
    filter: none;
    opacity: 0.5;
}

.atyc-footer__shape--line-2 {
    bottom: 20%;
    left: 22%;
    width: 44%;
    height: 1px;
    background: rgba(255, 180, 100, 0.09);
    filter: none;
    opacity: 0.5;
}

.atyc-footer__grain {
    position: absolute;
    inset: 0;
    opacity: 0.10;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

@keyframes atycFooterFloatOne {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50%       { transform: translate3d(10px, -14px, 0); }
}

@keyframes atycFooterFloatTwo {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50%       { transform: translate3d(-14px, 12px, 0); }
}

@keyframes atycFooterFloatThree {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50%       { transform: translate3d(16px, -10px, 0); }
}

@keyframes atycFooterFloatFour {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50%       { transform: translate3d(-12px, 10px, 0); }
}

@keyframes atycFooterCirclePulse {
    0%, 100% { transform: scale(1);    opacity: 0.38; }
    50%       { transform: scale(1.07); opacity: 0.6;  }
}

/* =========================
   SHELL
========================= */

.atyc-footer__shell {
    position: relative;
    z-index: 3;
    width: min(1340px, calc(100% - 80px));
    margin: 0 auto;
}

/* =========================
   MAIN PANEL
========================= */

.atyc-footer__panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 4.5rem;
    align-items: start;
    padding: 0 7rem 3.5rem 0;
    background: none;
    border: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-radius: 0;
    overflow: visible;
}

.atyc-footer__panel::before,
.atyc-footer__panel::after {
    display: none;
}

/* =========================
   BRAND BLOCK
========================= */

.atyc-footer__brand {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.atyc-footer__brand-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.atyc-footer__logo-link {
    position: relative;
    display: inline-flex;
    width: fit-content;
}

.atyc-footer__logo-link::before,
.atyc-footer__logo-link::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

.atyc-footer__logo-link::before {
    top: 18px;
    right: -10px;
    width: 8px;
    height: 8px;
    background: rgba(220, 160, 90, 0.9);
    box-shadow: 0 0 12px rgba(220, 160, 90, 0.5), 0 0 24px rgba(255, 200, 100, 0.25);
    animation: atycFooterLogoSparkOne 5s ease-in-out infinite;
}

.atyc-footer__logo-link::after {
    bottom: 14px;
    left: 36px;
    width: 6px;
    height: 6px;
    background: rgba(255, 220, 150, 0.9);
    box-shadow: 0 0 10px rgba(255, 220, 150, 0.4), 0 0 20px rgba(220, 160, 90, 0.2);
    animation: atycFooterLogoSparkTwo 6.2s ease-in-out infinite;
}

@keyframes atycFooterLogoSparkOne {
    0%, 100% { opacity: 0;    transform: scale(0.7); }
    18%       { opacity: 0.95; transform: scale(1);   }
    34%       { opacity: 0.2;  transform: scale(1.4); }
    54%       { opacity: 0;    transform: scale(0.8); }
}

@keyframes atycFooterLogoSparkTwo {
    0%, 100% { opacity: 0;    transform: scale(0.7);  }
    42%       { opacity: 0;    transform: scale(0.7);  }
    58%       { opacity: 0.92; transform: scale(1);    }
    72%       { opacity: 0.2;  transform: scale(1.45); }
    88%       { opacity: 0;    transform: scale(0.85); }
}

.atyc-footer__logo {
    width: 128px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.08) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.atyc-footer__logo-link:hover .atyc-footer__logo,
.atyc-footer__logo-link:focus-visible .atyc-footer__logo {
    transform: translateY(-2px) scale(1.03);
    opacity: 0.88;
}

.atyc-footer__brand-copy {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.atyc-footer__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    width: fit-content;
    color: #d4965a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.atyc-footer__eyebrow::before {
    content: "";
    display: block;
    width: 46px;
    height: 1px;
    background: rgba(212, 150, 90, 0.5);
}

/* Título — dos líneas limpias sin "e" colgado */
.atyc-footer__title {
    margin: 0;
    max-width: 14ch;
    color: #f5ede4;
    font-size: clamp(2.2rem, 3.6vw, 4rem);
    line-height: 1.0;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.atyc-footer__text {
    margin: 0;
    max-width: 34ch;
    color: #c9b5a0;
    font-size: 1rem;
    line-height: 1.8;
}

.atyc-footer__location {
    margin: 0.3rem 0 0;
    color: #b89070;
    font-size: 0.96rem;
    line-height: 1.6;
}

/* =========================
   CONTACT LINKS
========================= */

.atyc-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.atyc-footer__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #c9b5a0;
    font-size: 0.94rem;
    line-height: 1.5;
    transition: color 0.3s ease, transform 0.3s ease;
    width: fit-content;
    text-decoration: none;
}

.atyc-footer__contact-link svg {
    width: 15px;
    height: 15px;
    fill: #d4965a;
    flex-shrink: 0;
    transition: fill 0.3s ease;
}

.atyc-footer__contact-link:hover,
.atyc-footer__contact-link:focus-visible {
    color: #e8c090;
    transform: translateX(3px);
}

.atyc-footer__contact-link:hover svg,
.atyc-footer__contact-link:focus-visible svg {
    fill: #e8a870;
}

/* =========================
   NAV AREA
========================= */

.atyc-footer__nav-area {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 2.6rem;
    align-items: start;
    padding-top: 1rem;
}

.atyc-footer__nav-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(212, 150, 90, 0.08),
            rgba(212, 150, 90, 0.22),
            rgba(212, 150, 90, 0.06));
}

.atyc-footer__nav-group {
    position: relative;
    display: grid;
    gap: 1rem;
    align-content: start;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.atyc-footer__nav-group::before {
    content: "";
    position: absolute;
    top: -0.55rem;
    left: 0;
    width: 38px;
    height: 1px;
    background: rgba(212, 150, 90, 0.4);
    transition: width 0.35s ease, background 0.35s ease;
}

.atyc-footer__nav-group:hover,
.atyc-footer__nav-group:focus-within {
    transform: translateY(-4px);
}

.atyc-footer__nav-group:hover::before,
.atyc-footer__nav-group:focus-within::before {
    width: 54px;
    background: rgba(212, 150, 90, 0.65);
}

.atyc-footer__nav-title {
    color: #d4965a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.atyc-footer__nav-list {
    display: grid;
    gap: 0.8rem;
}

.atyc-footer__nav-link {
    position: relative;
    width: fit-content;
    color: #d8c9b8;
    font-size: 1rem;
    line-height: 1.45;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.atyc-footer__nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: rgba(212, 150, 90, 0.75);
    transition: width 0.3s ease;
}

.atyc-footer__nav-link:hover,
.atyc-footer__nav-link:focus-visible {
    color: #e8c090;
    transform: translateX(3px);
}

.atyc-footer__nav-link:hover::after,
.atyc-footer__nav-link:focus-visible::after {
    width: 100%;
}

.atyc-footer__nav-link--static:hover,
.atyc-footer__nav-link--static:focus-visible {
    transform: none;
}

.atyc-footer__nav-link--static::after {
    display: none;
}

/* =========================
   SOCIALS
========================= */

.atyc-footer__socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 8;
}

.atyc-footer__socials--right {
    position: absolute;
    top: 50%;
    right: -3.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 8;
}

.atyc-footer__socials--right::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(212, 150, 90, 0.22) 20%,
            rgba(212, 150, 90, 0.22) 80%,
            transparent);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: -1;
}

.atyc-footer__social {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 0;
    background: none;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: visible;
    text-decoration: none;
}

.atyc-footer__social::before {
    display: none;
}

.atyc-footer__social:hover,
.atyc-footer__social:focus-visible,
.atyc-footer__social.is-social-pulse {
    transform: translateX(-5px) scale(1.18);
    background: none;
    border: none;
    box-shadow: none;
}

.atyc-footer__social-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
}

.atyc-footer__social svg {
    width: 18px;
    height: 18px;
    fill: #c9956a;
    transition: fill 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.atyc-footer__social:hover svg,
.atyc-footer__social:focus-visible svg,
.atyc-footer__social.is-social-pulse svg {
    fill: #f5e0cc;
    transform: scale(1.08);
    filter: drop-shadow(0 0 6px rgba(212, 150, 90, 0.55));
}

/* =========================
   BOTTOM BAR
========================= */

.atyc-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.4rem 0 1.6rem;
    border-top: 1px solid rgba(212, 150, 90, 0.15);
}

.atyc-footer__copyright {
    margin: 0;
    color: #876a52;
    font-size: 0.82rem;
    line-height: 1.5;
}

.atyc-footer__legal {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.atyc-footer__legal-link {
    color: #a07d60;
    font-size: 0.84rem;
    line-height: 1.5;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.atyc-footer__legal-link:hover,
.atyc-footer__legal-link:focus-visible {
    color: #d4965a;
    transform: translateY(-1px);
}

/* =========================
   STATES
========================= */

.atyc-footer.is-hovering::after {
    opacity: 1;
}

.atyc-footer.is-hovering .atyc-footer__shape--circle-1,
.atyc-footer.is-hovering .atyc-footer__shape--circle-2 {
    opacity: 0.65;
}

.atyc-footer__nav-group.is-highlight {
    transform: translateY(-5px);
}

.atyc-footer__nav-group.is-highlight::before {
    width: 60px;
    background: rgba(212, 150, 90, 0.65);
}

.atyc-footer__nav-group.is-highlight .atyc-footer__nav-title {
    color: #e8a870;
}

/* =========================
   RESPONSIVE — TV / 4K (≥ 1920px)
========================= */

@media (min-width: 1920px) {
    .atyc-footer {
        padding: 7rem 0 0;
    }

    .atyc-footer__shell {
        width: min(1600px, calc(100% - 120px));
    }

    .atyc-footer__panel {
        gap: 6rem;
        padding: 0 9rem 4.5rem 0;
    }

    .atyc-footer__logo {
        width: 160px;
    }

    .atyc-footer__title {
        font-size: clamp(3.5rem, 3vw, 5.2rem);
    }

    .atyc-footer__text {
        font-size: 1.1rem;
    }

    .atyc-footer__contact-link {
        font-size: 1.05rem;
    }

    .atyc-footer__contact-link svg {
        width: 18px;
        height: 18px;
    }

    .atyc-footer__nav-title {
        font-size: 0.85rem;
    }

    .atyc-footer__nav-link {
        font-size: 1.1rem;
    }

    .atyc-footer__social svg {
        width: 22px;
        height: 22px;
    }

    .atyc-footer__social {
        width: 52px;
        height: 52px;
    }

    .atyc-footer__bottom {
        padding: 1.8rem 0 2.2rem;
        margin-top: 2.5rem;
    }

    .atyc-footer__copyright,
    .atyc-footer__legal-link {
        font-size: 0.92rem;
    }
}

/* =========================
   RESPONSIVE — Wide desktop (1440px–1919px)
   Ya cubierto por los estilos base
========================= */

/* =========================
   RESPONSIVE — Desktop estándar (1180px–1439px)
========================= */

@media (max-width: 1439px) and (min-width: 1181px) {
    .atyc-footer__shell {
        width: min(1200px, calc(100% - 80px));
    }

    .atyc-footer__panel {
        gap: 3.5rem;
        padding: 0 6rem 3.5rem 0;
    }

    .atyc-footer__title {
        font-size: clamp(2rem, 3.2vw, 3.6rem);
    }
}

/* =========================
   RESPONSIVE — Portátil / laptop (1024px–1180px)
========================= */

@media (max-width: 1180px) {
    .atyc-footer {
        padding: 4.5rem 0 0;
    }

    .atyc-footer__shell {
        width: min(100% - 40px, 1340px);
    }

    .atyc-footer__panel {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 0 3rem;
    }

    .atyc-footer__nav-area {
        grid-template-columns: repeat(3, minmax(100px, 1fr));
        gap: 2rem;
        padding-top: 0.4rem;
    }

    .atyc-footer__title {
        max-width: 12ch;
    }

    .atyc-footer__socials--right {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .atyc-footer__socials--right::before {
        display: none;
    }
}

/* =========================
   RESPONSIVE — Tablet landscape (768px–1023px)
========================= */

@media (max-width: 1023px) and (min-width: 768px) {
    .atyc-footer {
        padding: 4rem 0 0;
    }

    .atyc-footer__shell {
        width: min(100% - 48px, 100%);
    }

    .atyc-footer__panel {
        grid-template-columns: 1fr;
        gap: 2.8rem;
        padding: 0 0 2.8rem;
    }

    .atyc-footer__brand-top {
        grid-template-columns: auto 1fr;
        gap: 1.8rem;
        align-items: start;
    }

    .atyc-footer__logo {
        width: 112px;
    }

    .atyc-footer__title {
        font-size: clamp(2rem, 4vw, 3rem);
        max-width: 14ch;
    }

    .atyc-footer__nav-area {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem 2.4rem;
        padding-top: 0.4rem;
    }

    .atyc-footer__contact {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem 2rem;
    }

    .atyc-footer__socials--right {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 0.8rem;
        gap: 1.2rem;
    }

    .atyc-footer__socials--right::before {
        display: none;
    }

    .atyc-footer__bottom {
        flex-direction: row;
        align-items: center;
        margin-top: 1.8rem;
        padding: 1.4rem 0 1.8rem;
    }
}

/* =========================
   RESPONSIVE — Tablet portrait (600px–767px)
========================= */

@media (max-width: 767px) {
    .atyc-footer {
        padding: 3.5rem 0 0;
    }

    .atyc-footer__shell {
        width: min(100% - 24px, 100%);
    }

    .atyc-footer__panel {
        padding: 0 0 2.5rem;
        gap: 2.4rem;
    }

    .atyc-footer__shape--line-1,
    .atyc-footer__shape--line-2,
    .atyc-footer__shape--circle-2 {
        display: none;
    }

    .atyc-footer__brand-top {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .atyc-footer__logo {
        width: 104px;
    }

    .atyc-footer__title {
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.0;
    }

    .atyc-footer__text {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .atyc-footer__contact {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .atyc-footer__contact-link {
        font-size: 0.9rem;
    }

    .atyc-footer__nav-area {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem 2rem;
        padding-top: 0.4rem;
    }

    .atyc-footer__nav-group:last-child {
        grid-column: auto;
    }

    .atyc-footer__nav-group::before {
        top: -0.45rem;
    }

    .atyc-footer__nav-link {
        font-size: 0.96rem;
    }

    .atyc-footer__socials--right {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 0.4rem;
        gap: 0.8rem;
    }

    .atyc-footer__socials--right::before {
        display: none;
    }

    .atyc-footer__socials {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .atyc-footer__social {
        width: 36px;
        height: 36px;
    }

    .atyc-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 1.2rem;
        padding: 1.2rem 0 1.6rem;
    }

    .atyc-footer__legal {
        gap: 1rem 1.2rem;
    }
}

/* =========================
   RESPONSIVE — Móvil (≤ 599px)
========================= */

@media (max-width: 599px) {
    .atyc-footer {
        padding: 3rem 0 0;
    }

    .atyc-footer__shell {
        width: calc(100% - 32px);
    }

    .atyc-footer__panel {
        gap: 2rem;
        padding: 0 0 2rem;
    }

    .atyc-footer__logo {
        width: 90px;
    }

    .atyc-footer__eyebrow {
        font-size: 0.72rem;
    }

    .atyc-footer__eyebrow::before {
        width: 32px;
    }

    .atyc-footer__title {
        font-size: clamp(1.8rem, 8.5vw, 2.4rem);
        letter-spacing: -0.04em;
    }

    .atyc-footer__text {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .atyc-footer__location,
    .atyc-footer__contact-link {
        font-size: 0.88rem;
    }

    .atyc-footer__nav-area {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem 1.6rem;
    }

    .atyc-footer__nav-title {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }

    .atyc-footer__nav-link {
        font-size: 0.9rem;
    }

    .atyc-footer__social {
        width: 32px;
        height: 32px;
    }

    .atyc-footer__social svg {
        width: 16px;
        height: 16px;
    }

    .atyc-footer__bottom {
        margin-top: 1rem;
        padding: 1rem 0 1.4rem;
        gap: 0.8rem;
    }

    .atyc-footer__copyright {
        font-size: 0.78rem;
    }

    .atyc-footer__legal-link {
        font-size: 0.8rem;
    }

    .atyc-footer__legal {
        gap: 0.8rem 1rem;
    }
}

/* =========================
   RESPONSIVE — Móvil pequeño (≤ 380px)
========================= */

@media (max-width: 380px) {
    .atyc-footer__shell {
        width: calc(100% - 24px);
    }

    .atyc-footer__title {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }

    .atyc-footer__nav-area {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem 1.2rem;
    }

    .atyc-footer__legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* =========================
   PREFERS REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
    .atyc-footer::after,
    .atyc-footer__shape,
    .atyc-footer__logo,
    .atyc-footer__logo-link::before,
    .atyc-footer__logo-link::after,
    .atyc-footer__social,
    .atyc-footer__social svg,
    .atyc-footer__nav-group,
    .atyc-footer__nav-group::before,
    .atyc-footer__nav-link,
    .atyc-footer__contact-link,
    .atyc-footer__legal-link {
        transition: none;
        animation: none;
    }
}  