/* ================================================================
 * Logali Contacto — Landing pública /contacto/
 * ============================================================ */

.lct-page {
    --lct-navy: #212f61;
    --lct-navy-dark: #161f42;
    --lct-yellow: #ffc250;
    --lct-text: #1a2138;
    --lct-muted: #5a6478;
    --lct-bg: #f6f7fb;
    --lct-bg-soft: #fafbff;
    --lct-border: #d6dbe6;
    --lct-error: #dc2626;

    background: var(--lct-bg);
    color: var(--lct-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.55;
    padding-bottom: 60px;
}

.lct-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Hero ---------- */
.lct-hero {
    background: linear-gradient(135deg, var(--lct-navy) 0%, var(--lct-navy-dark) 100%);
    color: #fff;
    padding: 70px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lct-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,194,80,0.10), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,194,80,0.08), transparent 40%);
    pointer-events: none;
}
.lct-hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.lct-hero-eyebrow {
    display: inline-block;
    background: rgba(255,194,80,0.20);
    color: var(--lct-yellow);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.lct-hero-title {
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.15;
    margin: 0 0 14px;
    font-weight: 700;
}
.lct-hero-subtitle {
    font-size: 1.05rem;
    margin: 0 auto;
    max-width: 680px;
    opacity: 0.93;
}

/* CTA chat en el hero */
.lct-hero-ctas {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.lct-hero-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lct-yellow);
    color: var(--lct-navy) !important;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(255, 194, 80, 0.30);
    transition: all 0.18s ease;
}
.lct-hero-chat-btn:hover {
    background: #ffb733;
    color: var(--lct-navy) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 194, 80, 0.45);
}
.lct-hero-chat-btn svg { display: block; }
.lct-hero-chat-hint {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* ---------- Motivos (3 cards) ---------- */
.lct-motivos { padding: 40px 0 10px; }
.lct-motivos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}
.lct-motivo-card {
    background: #fff;
    border: 2px solid var(--lct-border);
    border-radius: 14px;
    padding: 26px 22px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    font-family: inherit;
    color: var(--lct-text) !important;     /* override por si <a> */
    text-decoration: none !important;       /* override por si <a> */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(33,47,97,0.06);
}
/* Card que enlaza a otra landing — sutil indicador visual de "salto externo" */
.lct-motivo-card-link {
    border-color: var(--lct-yellow);
    background: linear-gradient(180deg, #fffefb 0%, #fffaf0 100%);
}
.lct-motivo-card-link .lct-motivo-cta {
    color: var(--lct-navy);
    font-weight: 700;
}
.lct-motivo-card:hover {
    border-color: var(--lct-navy);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(33,47,97,0.14);
}
.lct-motivo-card.is-active {
    border-color: var(--lct-yellow);
    background: linear-gradient(180deg, #fffbeb 0%, #fff8e1 100%);
    box-shadow: 0 6px 18px rgba(255,194,80,0.28);
}
.lct-motivo-icon { font-size: 2.2rem; margin-bottom: 8px; display: block; }
.lct-motivo-title {
    font-size: 1.05rem;
    margin: 0 0 6px;
    color: var(--lct-navy);
    font-weight: 700;
}
.lct-motivo-desc {
    margin: 0 0 14px;
    font-size: 0.9rem;
    color: var(--lct-muted);
    flex: 1;
}
.lct-motivo-cta {
    font-size: 0.88rem;
    color: var(--lct-navy);
    font-weight: 600;
}

/* ---------- Section title ---------- */
.lct-section-title {
    font-size: 1.85rem;
    text-align: center;
    margin: 0 0 8px;
    color: var(--lct-text);
    font-weight: 700;
}
.lct-section-sub {
    text-align: center;
    color: var(--lct-muted);
    max-width: 640px;
    margin: 0 auto 28px;
    font-size: 1rem;
}

/* ---------- Form ---------- */
.lct-form-section { padding: 50px 0; }
.lct-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 38px;
    box-shadow: 0 8px 32px rgba(33,47,97,0.08);
    border: 1px solid var(--lct-border);
    max-width: 820px;
    margin: 0 auto;
}
.lct-form { max-width: 100%; }
.lct-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0; }

.lct-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lct-field { display: flex; flex-direction: column; gap: 6px; }
.lct-field-full { grid-column: 1 / -1; }
.lct-field label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--lct-text);
}
.lct-req { color: var(--lct-error); }
.lct-field input[type="text"],
.lct-field input[type="email"],
.lct-field input[type="tel"],
.lct-field select,
.lct-field textarea {
    padding: 11px 14px;
    border: 1px solid var(--lct-border);
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    color: var(--lct-text);
    font-family: inherit;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.lct-field input:focus, .lct-field select:focus, .lct-field textarea:focus {
    outline: none;
    border-color: var(--lct-navy);
    box-shadow: 0 0 0 3px rgba(33,47,97,0.12);
}
.lct-field textarea { resize: vertical; min-height: 110px; }
.lct-field .iti { width: 100%; }

.lct-consent {
    margin-top: 20px;
    padding: 14px 16px;
    background: var(--lct-bg-soft);
    border-radius: 8px;
    border: 1px solid var(--lct-border);
}
.lct-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--lct-muted);
    line-height: 1.5;
}
.lct-checkbox-label input { margin-top: 3px; flex-shrink: 0; }
.lct-checkbox-label a { color: var(--lct-navy); text-decoration: underline; }

.lct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
    font-family: inherit;
}
.lct-btn-primary {
    background: var(--lct-navy);
    color: #fff;
}
.lct-btn-primary:hover { background: var(--lct-navy-dark); transform: translateY(-1px); }
.lct-btn-lg { padding: 15px 36px; font-size: 1.05rem; min-width: 240px; }
.lct-actions { text-align: center; margin-top: 26px; }

.lct-error, .lct-success {
    padding: 14px 18px;
    border-radius: 8px;
    margin-top: 18px;
    font-size: 0.95rem;
}
.lct-error  { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.lct-success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; }
.lct-error[hidden], .lct-success[hidden] { display: none; }

/* ---------- Asesores ---------- */
.lct-asesores-section {
    padding: 50px 0 20px;
    background: #fff;
}
.lct-asesores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}
.lct-asesor-card {
    background: #fff;
    border: 1px solid var(--lct-border);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(33,47,97,0.07);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lct-asesor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(33,47,97,0.14);
    border-color: var(--lct-navy);
}
.lct-asesor-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lct-asesor-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lct-asesor-name {
    color: var(--lct-navy);
    margin: 0 0 4px;
    font-size: 1.25rem;
    font-weight: 700;
}
.lct-asesor-role {
    font-weight: 600;
    color: var(--lct-text);
    margin: 0 0 10px;
    font-size: 0.95rem;
}
.lct-asesor-tagline {
    color: var(--lct-muted);
    font-size: 0.94rem;
    line-height: 1.5;
    margin: 0 0 22px;
    flex: 1;
}
.lct-btn-asesor {
    background: var(--lct-navy);
    color: #fff;
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 700;
    min-width: 200px;
}
.lct-btn-asesor:hover {
    background: var(--lct-navy-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(33,47,97,0.24);
}

/* ---------- Página de gracias ---------- */
.lct-gracias-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    background: rgba(255,194,80,0.20);
    border: 3px solid var(--lct-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lctPop 0.5s ease-out;
}
.lct-gracias-icon .dashicons {
    color: var(--lct-yellow);
    font-size: 44px;
    width: 44px;
    height: 44px;
}
@keyframes lctPop {
    from { transform: scale(0.3); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.lct-gracias-next { padding: 60px 0; background: #fff; }
.lct-gracias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 20px;
}
.lct-gracias-card {
    display: block;
    text-decoration: none;
    background: var(--lct-bg-soft);
    border: 1px solid var(--lct-border);
    border-radius: 12px;
    padding: 28px 22px;
    color: var(--lct-text);
    transition: all 0.2s ease;
    text-align: center;
}
.lct-gracias-card:hover {
    border-color: var(--lct-navy);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(33,47,97,0.12);
    color: var(--lct-text);
}
.lct-gracias-card-icon { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.lct-gracias-card h3 { margin: 0 0 6px; color: var(--lct-text); font-size: 1.05rem; }
.lct-gracias-card p { margin: 0; color: var(--lct-muted); font-size: 0.92rem; line-height: 1.5; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
    .lct-hero { padding: 50px 16px 40px; }
    .lct-hero-title { font-size: 1.9rem; }
    .lct-form-card { padding: 24px 18px; }
    .lct-grid-2 { grid-template-columns: 1fr; gap: 14px; }
    .lct-motivos-grid { margin-top: -36px; }
    .lct-btn-lg { width: 100%; min-width: 0; }
}
