/* ============================================================
   CRECEMOS — Footer personalizado
   ============================================================ */

/* Ocultar footer de Elementor */
.elementor-location-footer { display: none !important; }

/* ── Sección principal — fondo oscuro ───────────────────── */
.cr-footer__main {
    background: #1E1E1E;
    padding: 64px 0 56px;
}

/* 4 cols iguales: Dir | GPTW | Contacto | Social */
.cr-footer__main-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 40px;
    align-items: center;
}

/* Título de columna */
.cr-footer__col-titulo {
    font-family: 'CentenialLT', Georgia, serif;
    font-weight: 100;
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.04em;
    margin: 0 0 16px;
    align-self: start;
}

/* Col con título: alinear desde arriba */
.cr-footer__col--top { align-self: start; }

/* Texto de columna */
.cr-footer__col-texto {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0;
}

.cr-footer__col-texto a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.18s;
}

.cr-footer__col-texto a:hover { color: #fff; }

/* ── Fila icono + texto ──────────────────────────────────── */
.cr-footer__info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cr-footer__info-item + .cr-footer__info-item {
    margin-top: 12px;
}

.cr-footer__info-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
}

/* ── GPTW — columna 1fr centrada entre Dir y Contacto ───── */
.cr-footer__col--gptw {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.cr-footer__gptw-link {
    display: block;
    line-height: 0;
}

.cr-footer__gptw-img {
    height: 120px;
    width: auto;
    display: block;
    opacity: 0.88;
    transition: opacity 0.2s;
}

.cr-footer__gptw-link:hover .cr-footer__gptw-img { opacity: 1; }

/* ── Columna social — centrada en su columna ─────────────── */
.cr-footer__col--social {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.cr-footer__social {
    display: flex;
    flex-direction: row;
    gap: 22px;
    align-items: center;
}

.cr-footer__social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    line-height: 0;
    transition: color 0.18s, transform 0.18s;
}

.cr-footer__social-item svg {
    width: 30px;
    height: 30px;
}

.cr-footer__social-item:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* ── Barra inferior roja ─────────────────────────────────── */
.cr-footer__bar {
    background: #E30723;
}

.cr-footer__bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cr-footer__bar-logo {
    height: 52px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.cr-footer__bar-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.18s;
    white-space: nowrap;
}

.cr-footer__bar-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .cr-footer__main-inner {
        padding: 0 32px;
        gap: 0 28px;
    }
    .cr-footer__bar-inner { padding: 0 32px; }
}

@media (max-width: 860px) {
    /* 2×2: fila 1 = Dirección + GPTW | fila 2 = Contacto + Social */
    .cr-footer__main-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
        align-items: start;
    }
    .cr-footer__col--gptw {
        align-items: center;
        justify-content: center;
    }
    .cr-footer__col--social {
        align-items: center;
        justify-content: center;
    }
    .cr-footer__social { gap: 18px; }
}

@media (max-width: 480px) {
    .cr-footer__main { padding: 40px 0 36px; }

    .cr-footer__main-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 32px;
        align-items: start;
    }

    .cr-footer__col--top { text-align: center; }
    .cr-footer__info-item { justify-content: center; }
    .cr-footer__col-titulo { font-size: 17px; margin-bottom: 12px; }
    .cr-footer__col-texto { font-size: 14px; }
    .cr-footer__gptw-img { height: 90px; }
    .cr-footer__social { gap: 20px; }
    .cr-footer__social-item svg { width: 28px; height: 28px; }

    /* Barra roja: envolver si el texto no cabe */
    .cr-footer__bar-inner {
        padding: 0 24px;
        height: auto;
        min-height: 56px;
        flex-wrap: wrap;
        gap: 8px 16px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .cr-footer__bar-logo { height: 36px; }
    .cr-footer__bar-link { font-size: 12px; }
}
