body{

background:#f6f7fb;

font-family:Arial,sans-serif;

}

/* HERO */

.trabaja-hero{

padding:100px 0;

background:
linear-gradient(
135deg,
#000 0%,
#111 100%
);

color:#fff;

}

.trabaja-content{

max-width:760px;

}

.trabaja-badge{

display:inline-flex;

align-items:center;

gap:8px;

background:rgba(255,255,255,.08);

padding:10px 16px;

border-radius:999px;

font-size:14px;

margin-bottom:25px;

}

.trabaja-content h1{

font-size:64px;

font-weight:800;

line-height:1.1;

margin-bottom:25px;

letter-spacing:-2px;

}

.trabaja-content p{

font-size:20px;

line-height:1.8;

color:#cfcfcf;

max-width:700px;

margin-bottom:35px;

}

.btn-postular{

display:inline-flex;

align-items:center;

justify-content:center;

height:56px;

padding:0 34px;

border-radius:14px;

background:#b720eb;

color:#fff;

font-size:16px;

font-weight:700;

text-decoration:none;

transition:.2s;

}

.btn-postular:hover{

background:#9919c7;

}

/* SECTIONS */

.beneficios,
.puestos,
.formulario-trabajo{

padding:90px 0;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:44px;

font-weight:800;

color:#111;

margin-bottom:16px;

letter-spacing:-1px;

}

.section-title p{

font-size:18px;

color:#666;

}

/* BENEFICIOS */

.beneficios-grid{

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:25px;

}

.beneficio-card{

background:#fff;

padding:35px;

border-radius:24px;

border:1px solid #ececec;

transition:.2s;

}

.beneficio-card:hover{

transform:translateY(-5px);

box-shadow:
0 15px 40px rgba(0,0,0,.08);

}

.beneficio-icon{

width:72px;
height:72px;

border-radius:18px;

background:#f4e6fb;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#b720eb;

margin-bottom:24px;

}

.beneficio-card h3{

font-size:22px;

margin-bottom:14px;

}

.beneficio-card p{

font-size:16px;

line-height:1.7;

color:#666;

}

/* PUESTOS */

.puestos-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:25px;

}

.puesto-card{

background:#fff;

padding:35px;

border-radius:24px;

border:1px solid #ececec;

}

.puesto-area{

display:inline-block;

padding:8px 14px;

border-radius:999px;

background:#f4e6fb;

color:#b720eb;

font-size:13px;

font-weight:700;

margin-bottom:20px;

}

.puesto-card h3{

font-size:28px;

margin-bottom:18px;

line-height:1.3;

}

.puesto-card p{

font-size:16px;

line-height:1.8;

color:#666;

margin-bottom:28px;

}

.puesto-card button{

width:100%;

height:52px;

border:none;

border-radius:14px;

background:#111;

color:#fff;

font-size:15px;

font-weight:700;

cursor:pointer;

transition:.2s;

}

.puesto-card button:hover{

background:#b720eb;

}

/* FORM */

.form-wrapper{

display:grid;

grid-template-columns:
420px 1fr;

gap:50px;

align-items:start;

background:#fff;

padding:50px;

border-radius:28px;

border:1px solid #ececec;

}

.form-left h2{

font-size:46px;

line-height:1.1;

margin-bottom:20px;

}

.form-left p{

font-size:18px;

line-height:1.8;

color:#666;

}

.form-grid{

display:grid;

grid-template-columns:
1fr 1fr;

gap:20px;

margin-bottom:20px;

}

.form-group{

margin-bottom:20px;

}

.form-group label{

display:block;

font-size:14px;

font-weight:700;

margin-bottom:10px;

color:#222;

}

.form-group input,
.form-group select,
.form-group textarea{

width:100%;

border:1px solid #ddd;

border-radius:14px;

padding:16px;

font-size:15px;

outline:none;

transition:.2s;

background:#fff;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

border-color:#b720eb;

}

.btn-enviar{

width:100%;

height:56px;

border:none;

border-radius:14px;

background:#b720eb;

color:#fff;

font-size:16px;

font-weight:700;

cursor:pointer;

transition:.2s;

}

.btn-enviar:hover{

background:#9919c7;

}

/* RESPONSIVE */

@media(max-width:1100px){

.beneficios-grid{

grid-template-columns:
repeat(2,1fr);

}

.puestos-grid{

grid-template-columns:1fr;

}

.form-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.trabaja-hero{

padding:70px 0;

}

.trabaja-content h1{

font-size:42px;

}

.trabaja-content p{

font-size:17px;

}

.section-title h2{

font-size:34px;

}

.beneficios-grid{

grid-template-columns:1fr;

}

.form-grid{

grid-template-columns:1fr;

}

.form-wrapper{

padding:30px;

}

}