/* =========================
   Footer 
   ========================= */

.rc-footer {
    background: #0b0b0b;
    color: rgba(255, 255, 255, .78);
}

.rc-footer__inner {
    max-width: 1800px;
    margin: 0 auto;
    padding: 34px 60px 18px;
}


@media (max-width: 1024px) {
    .rc-footer__inner {
        padding: 28px 24px 16px;
    }
}


/* GRID PRINCIPAL */
.rc-footer__grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    /* brand | company | contacto */
    align-items: start;
    column-gap: 64px;
}

/* En mobile apilamos */
@media (max-width: 900px) {
    .rc-footer__grid {
        grid-template-columns: 1fr;
        row-gap: 34px;
    }
}

/* COL 1: LOGO */
.rc-footer__brand {
    display: flex;
    align-items: flex-start;
}

.rc-footer__logo {
    height: 74px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1.10);
}

@media (max-width: 900px) {
    .rc-footer__logo {
        height: 66px;
    }
}

/* COL 2: EMPRESA + REDES (pegadito al logo) */
.rc-footer__company {
    margin-left: -12px;
    /* acerca un toque a la marca */
}

@media (max-width: 900px) {
    .rc-footer__company {
        margin-left: 0;
    }
}

.rc-footer__name {
    margin: 0;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, .92);
}

.rc-footer__role {
    margin: 6px 0 18px;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

/* Kicker */
.rc-footer__kicker {
    margin: 18px 0 12px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

/* REDES: iconos pro */
.rc-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.rc-social__link {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, color .25s ease, background .25s ease;
    background: rgba(255, 255, 255, .02);
}

.rc-social__link:hover {
    border-color: rgba(255, 255, 255, .32);
    color: rgba(255, 255, 255, .95);
    background: rgba(255, 255, 255, .06);
    transform: translateY(-1px);
}

.rc-social__icon {
    width: 18px;
    height: 18px;
    stroke-width: 1.6;
}

/* COL 3: CONTACTO (bien a la derecha, con aire) */
.rc-footer__contact {
    justify-self: end;
    padding-right: 6px;
    /* aire a la derecha */
    min-width: 320px;
}

@media (max-width: 900px) {
    .rc-footer__contact {
        justify-self: start;
        min-width: auto;
        padding-right: 0;
    }
}

/* LISTA CONTACTO */
.rc-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.rc-contact__item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
}

.rc-contact__icon {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, .60);
    margin-top: 2px;
}

.rc-contact__link {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    width: fit-content;
    transition: color .25s ease, border-color .25s ease;
}

.rc-contact__link:hover {
    color: rgba(255, 255, 255, .95);
    border-bottom-color: rgba(255, 255, 255, .30);
}

.rc-contact__text {
    color: rgba(255, 255, 255, .70);
    line-height: 1.6;
    font-size: 14px;
}

/* DIVISOR + BOTTOM */
.rc-footer__bottom {
    margin-top: 22px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}


@media (max-width: 900px) {
    .rc-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.rc-footer__copy {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
}

.rc-footer__links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rc-footer__link {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-size: 13px;
    transition: color .25s ease;
}

.rc-footer__link:hover {
    color: rgba(255, 255, 255, .85);
}