﻿@font-face {
    font-family: 'Futura Display';
    src: url('/fonts/Futura Display.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.textFutureDisplay {
    font-family: 'Futura Display', sans-serif;
}


/* En tu CSS global (por ejemplo, en skytile.css o donde lo uses) */
@font-face {
    font-family: 'GildaDisplay';
    src: url('/fonts/GildaDisplay-Regular.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.textGilda {
    font-family: 'GildaDisplay', sans-serif;
}
/* ====== Footer base ====== */
.sky-footer {
    width: 100%;
    color: #fff;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ====== Franja superior ====== */
.sky-footer__top {
    background: #2f2f2f; /* gris oscuro como el de la captura */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 18px 28px;
}

.sky-footer .sf-email {
    color: #fff;
    font-size: clamp(18px, 2.2vw, 28px);
    text-decoration: none;
    transition: opacity .2s ease;
}

    .sky-footer .sf-email:hover {
        opacity: .85;
    }

.sky-footer .sf-cta {
    background: #d1f053; /* lima de la marca */
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 14px 22px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: transform .12s ease, filter .12s ease;
}

    .sky-footer .sf-cta:hover {
        transform: translateY(-1px);
        filter: brightness(1.02);
    }

/* ====== Franja inferior ====== */
.sky-footer__bottom {
    background: #000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
}

/* Izquierda: logo o brand */
.sf-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sf-logo {
    height: 50px;
    width: auto;
    display: block;
    filter: none;
}

.sf-brand {
    font-size: 24px;
    letter-spacing: .35em;
    padding: .35rem .6rem;
    border: 2px solid #fff;
    display: inline-block;
}

/* Centro: teléfono lima */
.sf-center {
    display: flex;
    justify-content: center;
}

.sf-phone {
    color: #d1f053;
    font-weight: 900;
    font-size: clamp(20px, 3.2vw, 34px);
    letter-spacing: .06em;
    text-decoration: none;
    white-space: nowrap;
}

/* Derecha: iconos sociales */
.sf-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.sf-icon {
    --size: 42px;
    height: var(--size);
    width: var(--size);
    border: 2px solid #fff;
    border-radius: 8px;
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: background .15s ease, border-color .15s ease, transform .12s ease;
}

    .sf-icon:hover {
        background: #d1f053;
        border-color: #d1f053;
        transform: translateY(-1px);
    }

    .sf-icon svg {
        width: 60%;
        height: 60%;
        fill: #fff;
    }

    .sf-icon:hover svg {
        fill: #000;
    }

/* ====== Responsivo ====== */
@media (max-width: 900px) {
    .sky-footer__bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sf-left, .sf-right {
        justify-content: center;
    }

    .sf-logo {
        height: 34px;
    }
}

@media (max-width: 560px) {
    .sky-footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .sf-cta {
        width: 100%;
        text-align: center;
    }
}
