/* ============================================
   ff-call-center.css
   Bloque destacado de call center: telefono + email.
   Dos variantes:
     - .ff-call-center--grande   → tarjeta completa para landing /gestionar-reserva
     - .ff-call-center--compacto → linea con iconos para footer/header movil
   Colores: azul Faster #263c89 (primario) + naranja CTA #e0984c.
   ============================================ */

.ff-call-center {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    box-sizing: border-box;
}

.ff-call-center *, .ff-call-center *::before, .ff-call-center *::after {
    box-sizing: border-box;
}

/* ---------- Variante GRANDE (landing) ---------- */
.ff-call-center--grande {
    max-width: 720px;
    margin: 32px auto;
    padding: 40px 32px;
    background: #ffffff;
    border: 1px solid #e6e8ef;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(38, 60, 137, 0.08);
    text-align: center;
}

.ff-call-center--grande .ff-call-center__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    background: #263c89;
    border-radius: 50%;
    color: #ffffff;
}

.ff-call-center--grande .ff-call-center__icon svg {
    fill: #ffffff;
}

.ff-call-center--grande .ff-call-center__titulo {
    margin: 0 0 12px;
    color: #263c89;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.ff-call-center--grande .ff-call-center__subtitulo {
    margin: 0 auto 28px;
    max-width: 540px;
    color: #555a6b;
    font-size: 15px;
    line-height: 1.5;
}

.ff-call-center--grande .ff-call-center__acciones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.ff-call-center--grande .ff-call-center__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    min-width: 220px;
}

.ff-call-center--grande .ff-call-center__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.ff-call-center--grande .ff-call-center__btn--primario {
    background: #e0984c;
    color: #ffffff;
}

.ff-call-center--grande .ff-call-center__btn--primario:hover,
.ff-call-center--grande .ff-call-center__btn--primario:focus {
    background: #c8843e;
    color: #ffffff;
}

.ff-call-center--grande .ff-call-center__btn--primario svg {
    fill: #ffffff;
}

.ff-call-center--grande .ff-call-center__btn--secundario {
    background: #ffffff;
    color: #263c89;
    border: 2px solid #263c89;
}

.ff-call-center--grande .ff-call-center__btn--secundario:hover,
.ff-call-center--grande .ff-call-center__btn--secundario:focus {
    background: #263c89;
    color: #ffffff;
}

.ff-call-center--grande .ff-call-center__btn--secundario svg {
    fill: currentColor;
}

.ff-call-center--grande .ff-call-center__btn-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.ff-call-center--grande .ff-call-center__btn-label small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    font-weight: 500;
}

.ff-call-center--grande .ff-call-center__btn-label strong {
    font-size: 16px;
    font-weight: 700;
}

/* Responsive grande: en pantalla pequena los botones a ancho completo */
@media (max-width: 600px) {
    .ff-call-center--grande {
        margin: 20px 12px;
        padding: 28px 20px;
    }
    .ff-call-center--grande .ff-call-center__titulo {
        font-size: 20px;
    }
    .ff-call-center--grande .ff-call-center__acciones {
        flex-direction: column;
        align-items: stretch;
    }
    .ff-call-center--grande .ff-call-center__btn {
        min-width: 0;
        width: 100%;
        justify-content: center;
    }
    .ff-call-center--grande .ff-call-center__btn-label {
        align-items: center;
    }
}

/* ---------- Variante COMPACTO (footer / sidebar / header movil) ---------- */
.ff-call-center--compacto {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    font-size: 14px;
}

.ff-call-center--compacto .ff-call-center__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.ff-call-center--compacto .ff-call-center__link:hover {
    opacity: 0.75;
    text-decoration: none;
}

.ff-call-center--compacto .ff-call-center__link svg {
    fill: currentColor;
    flex-shrink: 0;
}

/* Responsive compacto: en pantalla pequena se apila */
@media (max-width: 480px) {
    .ff-call-center--compacto {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
