:root {
    /* DEFAULT: LIGHT PREMIUM */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --black: #0F172A;
    --dark: #1E293B;
    --card: #FFFFFF;
    --border: #E2E8F0;
    --mid: #94A3B8;
    --muted: #64748B;
    --light: #475569;
    --blue: #1A6FFF;
    --blue2: #0E59D1;
    --nav-bg: 255, 255, 255;
    --hero-stroke: rgba(15, 23, 42, .03);
    --noise-opacity: .015;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

[data-theme="dark"] {
    --white: #F0EDE8;
    --off-white: #0A0A0A;
    --black: #FFFFFF;
    --dark: #111111;
    --card: #161616;
    --border: #222222;
    --mid: #444444;
    --muted: #666666;
    --light: #AAAAAA;
    --blue: #1A6FFF;
    --blue2: #4D8FFF;
    --nav-bg: 10, 10, 10;
    --hero-stroke: rgba(255, 255, 255, .04);
    --noise-opacity: .035;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--off-white);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    transition: background 0.4s ease, color 0.4s ease;
}

/* ── CUSTOM CURSOR ── */
#cursor {
    width: 12px;
    height: 12px;
    background: var(--blue);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform .15s ease, width .2s, height .2s;
}

#cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(26, 111, 255, .4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform .35s ease;
}

/* ── NOISE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: var(--noise-opacity);
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 48px;
    height: 72px;
    border-bottom: 1px solid var(--border);
    background: rgba(var(--nav-bg), .8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

[data-theme="dark"] nav {
    background: rgba(10, 10, 10, .9);
}

[data-theme="light"] nav {
    background: rgba(255, 255, 255, .8);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--black);
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--blue);
}

.nav-links {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: width .25s ease;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

/* Botón Toggle de Tema */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    color: var(--black);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.theme-toggle:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: rotate(15deg);
}

.btn-ghost {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    border: 1px solid var(--border);
    padding: 10px 24px;
    text-decoration: none;
    transition: all .2s;
    cursor: none;
}

.btn-ghost:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-primary {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--blue);
    border: none;
    padding: 11px 26px;
    text-decoration: none;
    transition: all .2s;
    cursor: none;
}

.btn-primary:hover {
    background: var(--blue2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 111, 255, 0.3);
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 48px 96px;
    overflow: hidden;
    background: var(--off-white);
    position: relative;
    transition: background 0.4s ease;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-60%);
    font-family: var(--font-display);
    font-size: clamp(160px, 22vw, 320px);
    font-weight: 900;
    line-height: .85;
    color: transparent;
    -webkit-text-stroke: 1px var(--hero-stroke);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px;
    transition: -webkit-text-stroke 0.4s ease;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--blue);
}

.hero-eyebrow span {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(64px, 8vw, 112px);
    font-weight: 900;
    line-height: .92;
    letter-spacing: -2px;
    margin-bottom: 28px;
    color: var(--black);
}

.hero-h1 em {
    font-style: italic;
    color: var(--blue);
}

.hero-sub {
    font-size: 17px;
    color: var(--light);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 48px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-scroll {
    position: absolute;
    right: 48px;
    bottom: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--border), transparent);
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(.4);
        opacity: .4;
    }
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 8px;
}

.hero-stat {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease;
}

.hero-stat:hover {
    border-color: var(--blue);
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: var(--blue);
    letter-spacing: -2px;
}

.hero-stat-lbl {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    text-align: right;
    max-width: 140px;
    line-height: 1.2;
}

/* ── STRIP ── */
.strip {
    background: var(--blue);
    padding: 16px 0;
    overflow: hidden;
}

.strip-inner {
    display: flex;
    white-space: nowrap;
    animation: stripMove 25s linear infinite;
}

.strip-item {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.strip-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, .4);
    border-radius: 50%;
}

@keyframes stripMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SERVICIOS ── */
#servicios {
    padding: 120px 48px;
    background: var(--off-white);
    transition: background 0.4s ease;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
}

.section-kicker {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -2px;
    color: var(--black);
}

.section-title em {
    font-style: italic;
    color: var(--blue);
}

.section-sub-right {
    font-size: 15px;
    color: var(--muted);
    max-width: 320px;
    line-height: 1.7;
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-item {
    background: var(--card);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid var(--border);
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.service-num {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--blue);
    opacity: .4;
}

.service-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--black);
}

.service-desc {
    font-size: 14px;
    color: var(--light);
    line-height: 1.7;
    flex: 1;
}

.service-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}

.service-item:hover .service-link {
    color: var(--blue);
}

/* ── NOSOTROS ── */
#nosotros {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    transition: background 0.4s ease;
}

[data-theme="dark"] #nosotros {
    background: var(--off-white);
}

.nosotros-left {
    padding: 120px 64px 120px 48px;
    border-right: 1px solid var(--border);
}

.nosotros-right {
    background: var(--off-white);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.4s ease;
}

[data-theme="dark"] .nosotros-right {
    background: var(--card);
}

.nos-body {
    font-size: 18px;
    color: var(--light);
    line-height: 1.8;
    margin: 32px 0 40px;
}

.nos-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nos-tag {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    padding: 8px 18px;
    color: var(--black);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 48px;
}

.stat-item {
    background: var(--card);
    padding: 40px;
    text-align: center;
}

.stat-val {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    color: var(--black);
}

.stat-val span {
    color: var(--blue);
}

/* ── CONTACTO ── */
#contacto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: background 0.4s ease;
}

.contacto-left {
    padding: 120px 64px 120px 48px;
    background: var(--card);
    border-right: 1px solid var(--border);
}

.contacto-right {
    padding: 120px 80px;
    background: var(--off-white);
}

.form-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border);
    padding: 16px 0;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 16px;
    margin-bottom: 40px;
    outline: none;
    transition: all .3s;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: var(--blue);
}

.form-submit {
    width: 100%;
    background: var(--black);
    color: var(--white);
    border: none;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 24px;
    cursor: none;
    transition: all .3s;
}

.form-submit:hover {
    background: var(--blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 111, 255, 0.2);
}

.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #FFFFFF;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 20px;
    width: 100%;
    border: none;
    margin-top: 40px;
    cursor: none;
}

/* ── FOOTER ── */
footer {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    padding: 80px 48px 40px;
    transition: background 0.4s ease;
}

[data-theme="dark"] footer {
    background: var(--off-white);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--black);
    margin-bottom: 12px;
}

.footer-logo-text span {
    color: var(--blue);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 13px;
    color: var(--muted);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-soc {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    transition: all .2s;
    cursor: none;
}

.footer-soc:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── ALIADOS ── */
#aliados {
    padding: 64px 48px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 64px;
    transition: background 0.4s ease;
}

[data-theme="dark"] #aliados {
    background: var(--off-white);
}

.aliados-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    max-width: 100px;
    line-height: 1.4;
}

.aliados-logos {
    display: flex;
    flex: 1;
    border-left: 1px solid var(--border);
}

.aliado-item {
    flex: 1;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
    transition: all .3s;
}

.aliado-item:hover {
    background: var(--off-white);
}

.aliado-logo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--mid);
    opacity: .5;
    transition: all .3s;
}

.aliado-item:hover .aliado-logo {
    opacity: 1;
    color: var(--blue);
}

/* ── CASOS ── */
#casos {
    padding: 120px 48px;
    background: var(--off-white);
    transition: background 0.4s ease;
}

[data-theme="dark"] #casos {
    background: var(--card);
}

.casos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.caso-card {
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
}

.caso-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
}

.caso-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.caso-thumb-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--blue);
    opacity: .3;
}

.caso-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.caso-tag {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.caso-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
}

.caso-desc {
    font-size: 14px;
    color: var(--light);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.caso-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.caso-metric {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--blue);
}

.caso-metric-lbl {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.caso-cta {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    transition: color .2s;
}

.caso-card:hover .caso-cta {
    color: var(--blue);
}

/* ── EQUIPO ── */
#equipo {
    padding: 120px 48px;
    background: var(--white);
    transition: background 0.4s ease;
}

[data-theme="dark"] #equipo {
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.team-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 32px;
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    background: var(--off-white);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-photo-placeholder {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--blue);
    opacity: .2;
}

.team-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 12px;
}

.team-soc-link {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--muted);
    transition: all .2s;
    cursor: none;
}

.team-soc-link:hover {
    border-color: var(--blue);
    color: var(--blue);
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    body {
        cursor: default;
    }

    #cursor,
    #cursor-ring {
        display: none;
    }

    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    #hero {
        padding: 100px 24px 64px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-bg-text {
        font-size: 140px;
    }

    #aliados {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        padding: 64px 24px;
    }

    .aliados-logos {
        border-left: none;
        flex-wrap: wrap;
        width: 100%;
    }

    .aliado-item {
        flex: 0 0 50%;
        border: 1px solid var(--border);
    }

    #casos,
    #servicios,
    #nosotros,
    #equipo,
    #contacto {
        padding: 80px 24px;
    }

    .casos-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    #nosotros,
    #contacto {
        grid-template-columns: 1fr;
    }

    .nosotros-left,
    .contacto-left {
        padding: 0;
        border: none;
        margin-bottom: 64px;
    }

    .nosotros-right,
    .contacto-right {
        padding: 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-text {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}