/* ========================================
   TRADUCCIONES — Selectis Job
   Solo estilos propios. Nav/footer vienen de style.css.
   Colores: #334561, #dc9471, #6695a3, #f0f4f6
   ======================================== */

/* ===== HERO ===== */
.trad-hero {
    padding: calc(70px + 32px + 80px) 40px 80px !important;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #243347 0%, #334561 50%, #4a6282 100%);
}

.trad-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(220,148,113,0.15) 0%, transparent 65%);
    pointer-events: none;
}

.trad-hero__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.trad-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    animation: trad-fadeUp 0.6s ease;
}

.trad-hero__badge i { color: #dc9471; font-size: 1rem; }
.trad-hero__badge span { color: #fff; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.5px; }

.trad-hero h1 {
    font-family: serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: trad-fadeUp 0.6s ease 0.15s both;
}

.trad-hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #dc9471, #c07a55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.trad-hero__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: trad-fadeUp 0.6s ease 0.3s both;
}

.trad-hero__stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: trad-fadeUp 0.6s ease 0.45s both;
}

.trad-hero__stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trad-hero__stat-num { font-family: serif; font-size: 2.6rem; font-weight: 700; color: #fff; line-height: 1; }
.trad-hero__stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }

.trad-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #334561;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    transition: all 0.3s;
    animation: trad-fadeUp 0.6s ease 0.6s both;
}

.trad-hero__cta:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.3); background: #f0f4f6; }
.trad-hero__cta i { transition: transform 0.3s; }
.trad-hero__cta:hover i { transform: translateX(4px); }

/* ===== CONTAINER ===== */
.trad-container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }

/* ===== INFO ===== */
.trad-info { padding: 70px 5%; background: #f0f4f6; text-align: center; }
.trad-info h2 { font-family: serif; font-size: 2.2rem; color: #334561; font-weight: 700; margin-bottom: 20px; }
.trad-info p { max-width: 800px; margin: 0 auto 16px; line-height: 1.8; font-size: 1rem; color: #555; }

.trad-btn {
    display: inline-block;
    background: #6695a3;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 14px;
    transition: all 0.3s;
}

.trad-btn:hover { background: #557f8c; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(102,149,163,0.3); }

/* ===== DOCUMENTOS ===== */
.trad-docs { padding: 70px 5%; background: #fff; }
.trad-docs h2 { text-align: center; font-family: serif; font-size: 2.2rem; color: #334561; font-weight: 700; margin-bottom: 12px; }
.trad-docs > .trad-container > p { text-align: center; max-width: 750px; margin: 0 auto 36px; color: #555; font-size: 1rem; }

.trad-docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.trad-doc-card {
    background: #f0f4f6;
    border-radius: 12px;
    padding: 28px 24px;
    border-left: 4px solid #6695a3;
    transition: all 0.3s;
}

.trad-doc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.trad-doc-card i { color: #fff; background: #334561; padding: 6px; border-radius: 5px; margin-right: 8px; font-size: 0.9rem; }
.trad-doc-card span { font-weight: 700; color: #334561; font-size: 0.95rem; }
.trad-doc-card p { color: #555; font-size: 0.88rem; line-height: 1.6; margin-top: 10px; }

.trad-note { text-align: center; font-style: italic; color: #777; max-width: 750px; margin: 60px auto 0 !important; font-size: 0.88rem; padding: 24px 28px; background: #e8ecf1; border-radius: 8px; border-top: 3px solid #6695a3; }

/* ===== PROCESO ===== */
.trad-proceso { padding: 70px 5%; background: #f0f4f6; }

.trad-proceso-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; max-width: 1100px; margin: 0 auto; }

.trad-proceso h2 { font-family: serif; font-size: 2.2rem; color: #334561; font-weight: 700; margin-bottom: 14px; }
.trad-proceso > .trad-container > p,
.trad-proceso-grid > div > p.trad-proceso-sub { color: #555; font-size: 1rem; margin-bottom: 24px; }

.trad-step {
    background: #fff;
    border: 1.5px solid #dde3ea;
    border-radius: 10px;
    margin-bottom: 14px;
    display: flex;
    padding: 18px;
    gap: 16px;
    transition: all 0.3s;
}

.trad-step:hover { transform: translateX(8px); box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-color: #6695a3; }

.trad-step-num {
    background: #334561;
    border-radius: 50%;
    width: 36px; height: 36px;
    display: flex; flex-shrink: 0;
    justify-content: center; align-items: center;
    color: #fff; font-weight: 700; font-size: 1rem;
}

.trad-step-body { flex: 1; }
.trad-step-body strong { display: block; color: #334561; font-size: 0.95rem; margin-bottom: 4px; }
.trad-step-body p { color: #555; font-size: 0.88rem; line-height: 1.6; }

.trad-proceso-visual { position: sticky; top: 120px; }
.trad-proceso-visual img { width: 100%; border-radius: 12px; box-shadow: 0 10px 36px rgba(0,0,0,0.1); margin-bottom: 20px; }

/* ===== VENTAJAS ===== */
.trad-ventajas { padding: 70px 5%; background: #fff; }
.trad-ventajas h2 { text-align: center; font-family: serif; font-size: 2.2rem; color: #334561; font-weight: 700; margin-bottom: 12px; }
.trad-ventajas > .trad-container > p { text-align: center; max-width: 700px; margin: 0 auto 36px; color: #555; font-size: 1rem; }

.trad-ventajas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

.trad-vent-card { background: #f0f4f6; border-radius: 12px; padding: 28px; text-align: center; transition: all 0.3s; }
.trad-vent-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.trad-vent-card i { color: #fff; background: #334561; font-size: 1.4rem; padding: 14px; border-radius: 50%; margin-bottom: 16px; display: inline-block; }
.trad-vent-card span { display: block; font-weight: 700; color: #334561; font-size: 1rem; margin-bottom: 8px; }
.trad-vent-card p { color: #555; font-size: 0.88rem; line-height: 1.6; }

/* ===== FORMULARIO ===== */
.trad-form-section { padding: 70px 5%; background: #334561; }
.trad-form-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.trad-form-info h2 { font-family: serif; font-size: 2.2rem; color: #fff; font-weight: 700; margin-bottom: 14px; line-height: 1.25; }
.trad-form-info p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.trad-form-checks { margin-top: 20px; }
.trad-form-check { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.trad-form-check i { color: #dc9471; font-size: 1rem; }
.trad-form-check span { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.9rem; }

.trad-form-card { background: #fff; border-radius: 14px; padding: 32px; box-shadow: 0 10px 36px rgba(0,0,0,0.15); }
.trad-form-card label { display: block; font-weight: 600; color: #334561; font-size: 0.8rem; margin: 14px 0 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.trad-form-card input,
.trad-form-card textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #dde3ea; border-radius: 8px; font-family: 'Open Sans', sans-serif; font-size: 0.92rem; transition: border-color 0.2s; background: #f8f9fb; }
.trad-form-card input:focus,
.trad-form-card textarea:focus { outline: none; border-color: #6695a3; background: #fff; }
.trad-form-card textarea { resize: vertical; min-height: 70px; }

.trad-file-area { border: 2px dashed #dde3ea; border-radius: 10px; padding: 18px; text-align: center; cursor: pointer; transition: border-color 0.2s; margin-top: 6px; }
.trad-file-area:hover { border-color: #6695a3; }
.trad-file-area label { cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 6px; color: #888; font-size: 0.85rem; font-weight: 400; text-transform: none; letter-spacing: 0; }
.trad-file-area i { font-size: 1.6rem; color: #6695a3; }
.trad-file-hint { font-size: 0.75rem; color: #aaa; margin-top: 4px; }
#trad-file-name { font-size: 0.82rem; color: #334561; font-weight: 600; margin-top: 6px; min-height: 18px; }

.trad-form-card input[type="submit"] { width: 100%; margin-top: 18px; background: #6695a3; color: #fff; border: none; padding: 14px; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.2s; }
.trad-form-card input[type="submit"]:hover { background: #557f8c; transform: translateY(-2px); }

/* ===== FAQ ===== */
.trad-faq { padding: 70px 5%; background: #f0f4f6; }
.trad-faq h2 { text-align: center; font-family: serif; font-size: 2.2rem; color: #334561; font-weight: 700; margin-bottom: 36px; }

.trad-faq-list { max-width: 800px; margin: 0 auto; }
.trad-faq-item { background: #fff; border-radius: 10px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.trad-faq-q { padding: 18px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #334561; font-size: 0.95rem; transition: background 0.2s; }
.trad-faq-q:hover { background: #f8f9fb; }
.trad-faq-q i { color: #6695a3; transition: transform 0.3s; }
.trad-faq-item.active .trad-faq-q i { transform: rotate(45deg); }
.trad-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.trad-faq-item.active .trad-faq-a { max-height: 300px; }
.trad-faq-a p { padding: 0 24px 18px; color: #555; line-height: 1.7; font-size: 0.9rem; }

/* ===== ANIMACIONES ===== */
@keyframes trad-fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .trad-hero { padding: 140px 20px 60px; min-height: auto; }
    .trad-docs-grid { grid-template-columns: 1fr; }
    .trad-hero h1 { font-size: 2rem; }
    .trad-hero__stats { gap: 24px; }
    .trad-hero__stat-num { font-size: 2rem; }
    .trad-proceso-grid { grid-template-columns: 1fr; }
    .trad-proceso-visual { position: relative; top: 0; }
    .trad-form-inner { grid-template-columns: 1fr; gap: 30px; }
    .trad-docs-grid { grid-template-columns: 1fr; }
    .trad-ventajas-grid { grid-template-columns: 1fr; }
}