/* =============================================
   CONTACTO.CSS — Arcadian Support MX
   Mismo sistema visual que el resto del sitio
   GPU-only transitions · contraste AA · 60 fps
   ============================================= */

.text-white-force { color: #ffffff !important; }
.text-light-force { color: #cbd5e1 !important; }
.section-padding  { padding: 90px 10%; }
.text-center      { text-align: center; }

.section-title {
    color: var(--text-title, #0f172a);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}
.sec-desc {
    color: var(--text-p, #64748b);
    margin-bottom: 44px;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--arcadian-blue, #2a6ef2);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.eyebrow-gold { color: var(--arcadian-gold, #f59e0b); }

.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity   0.7s cubic-bezier(0.33,1,0.68,1),
        transform 0.7s cubic-bezier(0.33,1,0.68,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* =============================================
   HERO
   ============================================= */
.hero-contacto {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(160deg, #060d1f 0%, #0a1530 45%, #0e1f5a 100%);
    display: flex;
    align-items: center;
    padding: 130px 10% 80px;
    overflow: hidden;
}
.hero-contacto::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42,110,242,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42,110,242,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 80% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 80% 50%, black 0%, transparent 70%);
    pointer-events: none;
}
.hero-contacto::after {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(42,110,242,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.hero-cont-stripe {
    position: absolute;
    left: 0; top: 15%; bottom: 15%;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--arcadian-blue, #2a6ef2), transparent);
    border-radius: 0 4px 4px 0;
}
.hero-content {
    max-width: 760px;
    position: relative;
    z-index: 2;
    animation: hero-in 0.9s cubic-bezier(0.33,1,0.68,1) both;
}
@keyframes hero-in {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-cont-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.6);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-cont-pill-dot {
    width: 7px; height: 7px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
    animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse {
    0%,100% { box-shadow: 0 0 0 0   rgba(16,185,129,0.6); }
    50%      { box-shadow: 0 0 0 5px rgba(16,185,129,0);   }
}
.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
.hero-cont-accent { color: var(--arcadian-gold, #f59e0b); }
.hero-content > p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.72;
    max-width: 600px;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.25);
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: bounce-hint 2.4s ease-in-out infinite;
    z-index: 2;
}
@keyframes bounce-hint {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(7px); }
}


/* =============================================
   TRIAGE — ACCESOS RÁPIDOS
   ============================================= */
.triage-section {
    background: #f8fafc;
    padding: 0 10% 70px;
}
.triage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: -60px auto 0;
    position: relative;
    z-index: 10;
}
.triage-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-top: 3px solid transparent;
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        transform   0.32s cubic-bezier(0.33,1,0.68,1),
        box-shadow  0.32s ease,
        border-top-color 0.32s ease;
}
.triage-card:hover { transform: translateY(-8px); box-shadow: 0 22px 44px rgba(0,0,0,0.1); }
.triage-card.t-green { border-top-color: #25D366; }
.triage-card.t-green:hover { box-shadow: 0 22px 44px rgba(37,211,102,0.12); }
.triage-card.t-gold  { border-top-color: var(--arcadian-gold, #f59e0b); }
.triage-card.t-gold:hover  { box-shadow: 0 22px 44px rgba(245,158,11,0.12); }
.triage-card.t-blue  { border-top-color: var(--arcadian-blue, #2a6ef2); }
.triage-card.t-blue:hover  { box-shadow: 0 22px 44px rgba(42,110,242,0.12); }

.triage-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.9rem;
    transition: transform 0.28s cubic-bezier(0.175,0.885,0.32,1.275);
}
.triage-card:hover .triage-icon { transform: scale(1.12) rotate(-5deg); }
.triage-green { color: #25D366; background: rgba(37,211,102,0.1); }
.triage-gold  { color: var(--arcadian-gold, #f59e0b); background: rgba(245,158,11,0.1); }
.triage-blue  { color: var(--arcadian-blue, #2a6ef2); background: rgba(42,110,242,0.1); }

.triage-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--text-title, #0f172a); margin-bottom: 10px; }
.triage-card p  { color: var(--text-p, #64748b); font-size: 0.88rem; line-height: 1.6; margin: 0; }


/* =============================================
   DIRECTORIO — ASESORES
   ============================================= */
.team-section {
    background: #fff;
    padding: 90px 10%;
    border-top: 1px solid #e2e8f0;
}

/* Área de rol — separador visual entre grupos */
.team-group-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.team-group-label span {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.tgl-green { color: #10b981; background: #ecfdf5; border: 1px solid #a7f3d0; }
.tgl-blue  { color: var(--arcadian-blue, #2a6ef2); background: #eff6ff; border: 1px solid #bfdbfe; }
.tgl-gold  { color: #d97706; background: #fffbeb; border: 1px solid #fde68a; }
.team-group-line { flex: 1; height: 1px; background: #e2e8f0; }

/* Grid de tarjetas — 3 en fila, luego 2 centrados */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 20px;
}
.team-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 740px;
    margin: 0 auto;
}

/* Tarjeta de asesor — compacta y rica */
.team-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    border-top: 3px solid;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition:
        transform  0.32s cubic-bezier(0.33,1,0.68,1),
        box-shadow 0.32s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
}
.team-card:hover { transform: translateY(-6px); }
.team-card:hover::before { opacity: 1; }

.card-green { border-top-color: #10b981; }
.card-green::before { background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(16,185,129,0.05) 0%, transparent 70%); }
.card-green:hover { box-shadow: 0 18px 36px rgba(16,185,129,0.12); }

.card-blue { border-top-color: var(--arcadian-blue, #2a6ef2); }
.card-blue::before { background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(42,110,242,0.05) 0%, transparent 70%); }
.card-blue:hover { box-shadow: 0 18px 36px rgba(42,110,242,0.12); }

.card-yellow { border-top-color: var(--arcadian-gold, #f59e0b); }
.card-yellow::before { background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(245,158,11,0.05) 0%, transparent 70%); }
.card-yellow:hover { box-shadow: 0 18px 36px rgba(245,158,11,0.12); }

/* Encabezado de la tarjeta */
.team-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.team-avatar {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.28s cubic-bezier(0.175,0.885,0.32,1.275);
}
.team-card:hover .team-avatar { transform: scale(1.1) rotate(-5deg); }
.card-green  .team-avatar { background: rgba(16,185,129,0.1);  color: #10b981; }
.card-blue   .team-avatar { background: rgba(42,110,242,0.1);  color: var(--arcadian-blue, #2a6ef2); }
.card-yellow .team-avatar { background: rgba(245,158,11,0.1);  color: var(--arcadian-gold, #f59e0b); }

.team-info { flex: 1; min-width: 0; }
.team-info h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-title, #0f172a);
    margin: 0 0 3px;
    line-height: 1.2;
}
.team-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
}
.card-green  .team-role-badge { color: #10b981; background: #ecfdf5; }
.card-blue   .team-role-badge { color: var(--arcadian-blue, #2a6ef2); background: #eff6ff; }
.card-yellow .team-role-badge { color: #d97706; background: #fffbeb; }

/* Descripción de especialidad */
.team-specialty {
    font-size: 0.84rem;
    color: var(--text-p, #64748b);
    line-height: 1.6;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    flex: 1;
}

/* Tags de especialidad */
.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}
.team-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
}

/* Acciones */
.team-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}
.btn-team-mail {
    background: #f1f5f9;
    color: #64748b;
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
    transition:
        background    0.22s ease,
        color         0.22s ease,
        border-color  0.22s ease,
        transform     0.22s cubic-bezier(0.33,1,0.68,1);
}
.btn-team-mail:hover {
    background: var(--arcadian-blue, #2a6ef2);
    color: #fff;
    border-color: var(--arcadian-blue, #2a6ef2);
    transform: translateY(-2px);
}
.btn-team-wa {
    background: #f0fdf4;
    color: #15803d;
    flex: 1;
    height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    gap: 7px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #bbf7d0;
    padding: 0 12px;
    transition:
        background    0.22s ease,
        color         0.22s ease,
        border-color  0.22s ease,
        transform     0.22s cubic-bezier(0.33,1,0.68,1),
        box-shadow    0.22s ease;
}
.btn-team-wa:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37,211,102,0.25);
}

/* Tarjeta general */
.general-attention-card {
    max-width: 860px;
    margin: 44px auto 0;
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    text-align: center;
    border: 2px solid var(--arcadian-blue, #2a6ef2);
    box-shadow: 0 14px 32px rgba(42,110,242,0.1);
}
.general-icon { font-size: 2.6rem; color: var(--arcadian-blue, #2a6ef2); margin-bottom: 16px; display: block; }
.general-attention-card h3 { font-size: 1.6rem; color: var(--arcadian-blue, #2a6ef2); margin-bottom: 10px; font-weight: 800; }
.general-attention-card p  { color: var(--text-p, #64748b); margin-bottom: 26px; font-size: 1rem; line-height: 1.6; }
.general-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-general-mail {
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--arcadian-blue, #2a6ef2);
    color: #fff;
    border: 2px solid var(--arcadian-blue, #2a6ef2);
    transition: background 0.22s ease, transform 0.22s cubic-bezier(0.33,1,0.68,1), box-shadow 0.22s ease;
}
.btn-general-mail:hover {
    background: #1e3a8a;
    border-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(42,110,242,0.28);
}
.btn-general-wa {
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 9px;
    background: #25D366;
    color: #fff;
    border: 2px solid #25D366;
    transition: background 0.22s ease, transform 0.22s cubic-bezier(0.33,1,0.68,1), box-shadow 0.22s ease;
}
.btn-general-wa:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37,211,102,0.28);
}


/* =============================================
   FORMULARIO + CICLO DE ATENCIÓN
   ============================================= */
.form-process-section {
    background: #f1f5f9;
    padding: 90px 10%;
    border-top: 1px solid #e2e8f0;
}
.contact-container {
    display: flex;
    gap: 44px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.form-col {
    flex: 1.5;
    background: #fff;
    padding: 44px 40px;
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}
.form-header { margin-bottom: 28px; }
.form-header h3 { font-size: 1.6rem; color: var(--text-title, #0f172a); margin-bottom: 8px; font-weight: 800; }
.form-header p  { color: var(--text-p, #64748b); font-size: 0.95rem; line-height: 1.6; margin: 0; }

.corporate-form { display: flex; flex-direction: column; gap: 18px; flex: 1; }
.form-row { display: flex; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.form-group label { font-size: 0.88rem; font-weight: 700; color: #334155; }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.97rem;
    color: var(--text-title, #0f172a);
    background: #f8fafc;
    width: 100%;
    box-sizing: border-box;
    transition:
        border-color 0.22s ease,
        background   0.22s ease,
        box-shadow   0.22s ease;
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--arcadian-blue, #2a6ef2);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(42,110,242,0.1);
}

.btn-submit-contact {
    margin-top: auto;
    background: var(--arcadian-gold, #f59e0b);
    color: #000;
    border: none;
    padding: 17px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    display: flex; align-items: center; justify-content: center; gap: 11px;
    box-shadow: 0 10px 22px rgba(245,158,11,0.3);
    transition:
        transform    0.22s cubic-bezier(0.33,1,0.68,1),
        box-shadow   0.22s ease,
        background   0.22s ease;
}
.btn-submit-contact:hover {
    background: #fbbf24;
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(245,158,11,0.44);
    color: #000;
}

/* Columna derecha */
.process-col { flex: 1; display: flex; flex-direction: column; gap: 24px; }

.onboarding-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 20px;
    padding: 36px 36px;
    color: #fff;
    box-shadow: 0 18px 36px rgba(30,58,138,0.2);
    flex: 1;
    position: relative;
    overflow: hidden;
}
.onboarding-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.onboarding-card h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: var(--arcadian-gold, #f59e0b);
    font-weight: 800;
    position: relative; z-index: 1;
}
.onboarding-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 28px;
    position: relative; z-index: 1;
}
.onboarding-steps { display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1; }
.on-step { display: flex; gap: 16px; align-items: flex-start; }
.on-num {
    width: 36px; height: 36px;
    background: var(--arcadian-blue, #2a6ef2);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(42,110,242,0.35);
}
.on-txt { color: #64748b; font-size: 0.9rem; line-height: 1.6; }
.on-txt strong { color: #e2e8f0; display: block; margin-bottom: 2px; font-size: 0.97rem; }

.social-connect-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
    text-align: center;
}
.social-connect-card h4 { font-size: 1.15rem; font-weight: 800; color: var(--text-title, #0f172a); margin-bottom: 8px; }
.social-connect-card p  { color: var(--text-p, #64748b); font-size: 0.88rem; margin-bottom: 22px; line-height: 1.5; }
.social-row { display: flex; gap: 14px; justify-content: center; }
.social-link {
    width: 52px; height: 52px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    transition:
        transform  0.28s cubic-bezier(0.175,0.885,0.32,1.275),
        box-shadow 0.28s ease;
}
.social-link:hover { transform: translateY(-5px) scale(1.08); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.social-link.fb { background: #1877F2; }
.social-link.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link.in { background: #0077B5; }


/* =============================================
   UBICACIONES
   ============================================= */
.locations-section {
    background: #fff;
    padding: 90px 10%;
    border-top: 1px solid #e2e8f0;
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.location-card {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition:
        transform    0.32s cubic-bezier(0.33,1,0.68,1),
        box-shadow   0.32s ease,
        border-color 0.32s ease;
}
.location-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(42,110,242,0.1);
    border-color: var(--arcadian-blue, #2a6ef2);
}
.loc-map { height: 240px; width: 100%; border-bottom: 3px solid var(--arcadian-gold, #f59e0b); }
.loc-map iframe { display: block; }
.loc-info { padding: 28px 26px; display: flex; flex-direction: column; flex: 1; }
.loc-info h4 { font-size: 1.05rem; font-weight: 800; color: var(--text-title, #0f172a); margin-bottom: 10px; line-height: 1.3; }
.loc-info p {
    color: var(--text-p, #64748b);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 18px;
    display: flex; align-items: flex-start; gap: 8px;
}
.loc-info p i { color: var(--arcadian-blue, #2a6ef2); margin-top: 3px; flex-shrink: 0; }
.loc-badge {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fffbeb;
    color: #b45309;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 800;
    border: 1px solid #fde68a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}
.loc-blue { background: #eff6ff; color: #1e3a8a; border-color: #bfdbfe; }

/* Aviso de seguridad */
.security-access-notice {
    max-width: 1100px;
    margin: 36px auto 0;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid var(--arcadian-gold, #f59e0b);
    padding: 22px 28px;
    border-radius: 12px;
    display: flex; gap: 18px; align-items: flex-start;
    box-shadow: 0 6px 16px rgba(0,0,0,0.03);
}
.security-access-notice i { font-size: 1.8rem; color: #d97706; margin-top: 3px; flex-shrink: 0; }
.security-access-notice strong { color: #92400e; font-size: 0.95rem; display: block; margin-bottom: 5px; font-weight: 800; }
.security-access-notice p { color: #b45309; margin: 0; line-height: 1.6; font-size: 0.88rem; }

/* SLA Banner */
.sla-banner {
    max-width: 1100px;
    margin: 28px auto 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 32px 44px;
    border-radius: 18px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 16px 36px rgba(30,58,138,0.2);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}
.sla-banner::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.sla-item { display: flex; gap: 18px; align-items: center; flex: 1; position: relative; z-index: 1; }
.sla-icon i { font-size: 2.4rem; color: var(--arcadian-gold, #f59e0b); }
.sla-details strong { display: block; font-size: 1.05rem; margin-bottom: 4px; color: #fff; }
.sla-details p { color: #64748b; font-size: 0.88rem; margin: 0; line-height: 1.4; }
.sla-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); margin: 0 24px; flex-shrink: 0; }


/* =============================================
   BOLSA DE TRABAJO
   ============================================= */
.careers-section {
    background: #f1f5f9;
    padding: 90px 10%;
    border-top: 1px solid #e2e8f0;
}
.careers-banner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 20px;
    padding: 50px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    gap: 40px;
    box-shadow: 0 22px 44px rgba(30,58,138,0.22);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}
.careers-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.careers-text { position: relative; z-index: 1; }
.careers-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; color: var(--arcadian-gold, #f59e0b); }
.careers-text p  { color: #94a3b8; font-size: 1rem; line-height: 1.7; margin: 0; max-width: 580px; }

.careers-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 240px;
    position: relative; z-index: 1;
    flex-shrink: 0;
}
.btn-careers {
    background: #fff;
    color: var(--arcadian-blue, #2a6ef2);
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    width: 100%; justify-content: center;
    transition:
        background  0.22s ease,
        color       0.22s ease,
        transform   0.22s cubic-bezier(0.33,1,0.68,1),
        box-shadow  0.22s ease;
}
.btn-careers:hover {
    background: var(--arcadian-gold, #f59e0b);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(245,158,11,0.35);
}
.careers-email { font-family: monospace; font-size: 0.84rem; color: #475569; }


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .team-grid   { grid-template-columns: repeat(2, 1fr); }
    .team-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .locations-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
    .contact-container { flex-direction: column; }
    .careers-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
    .careers-text p { margin: 0 auto; }
    .careers-action { width: 100%; max-width: 320px; }
}
@media (max-width: 900px) {
    .hero-contacto { padding: 120px 6% 60px; min-height: auto; }
    .hero-content h1 { font-size: 2.6rem; }
    .triage-grid { grid-template-columns: 1fr; margin-top: 30px; }
    .locations-grid { grid-template-columns: 1fr; }
    .sla-banner { flex-direction: column; text-align: center; padding: 28px 22px; gap: 24px; }
    .sla-divider { display: none; }
    .sla-item { flex-direction: column; gap: 10px; }
}
@media (max-width: 768px) {
    .section-padding, .team-section, .form-process-section,
    .locations-section, .careers-section { padding: 60px 5%; }
    .triage-section { padding: 0 5% 60px; }
    .team-grid, .team-grid-2 { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; }
    .form-col  { padding: 28px 22px; }
    .hero-content h1 { font-size: 2.1rem; }
    .section-title   { font-size: 2rem; }
    .general-actions { flex-direction: column; }
    .general-actions a { width: 100%; justify-content: center; }
    .security-access-notice { flex-direction: column; gap: 14px; }
    .onboarding-card { padding: 28px 22px; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .careers-banner  { padding: 32px 20px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}