*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

html, body {
margin:0;
padding:0;
width:100%;
overflow-x:hidden;
}

/* ===================================== */
/* MENSAJE */
/* ===================================== */

#mensaje-formulario{
display:none;
background:#ffe9e9;
color:#b30000;
padding:14px 18px;
border-radius:12px;
margin-bottom:20px;
font-weight:600;
font-size:14px;
border:1px solid #ffbcbc;
}

/* ===================================== */
/* BODY SIN ESPACIOS (IMPORTANTE PARA IFRAMES) */
/* ===================================== */

body{
background:transparent;
margin:0;
padding:0;
}

/* ===================================== */
/* CONTENEDOR PRINCIPAL */
/* ===================================== */

.wrap{
width:100%;
max-width:850px;
margin:0 auto;
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* ===================================== */
/* PASOS */
/* ===================================== */

.step{
display:none;
animation:fade .35s ease;
}

.step.active{
display:block;
}

@keyframes fade{
from{
opacity:0;
transform:translateY(15px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* ===================================== */
/* TEXTOS */
/* ===================================== */

h2{
font-size:30px;
margin-bottom:25px;
color:#111;
}

/* ===================================== */
/* LABELS */
/* ===================================== */

label{
display:block;
margin-top:15px;
margin-bottom:6px;
font-weight:700;
color:#222;
}

/* CHECKBOX EXPERIENCIA */
label:has(input[type="checkbox"]){
display:flex;
align-items:center;
gap:10px;
margin-top:12px;
margin-bottom:0;
font-weight:600;
cursor:pointer;
line-height:1.4;
}

input[type="checkbox"]{
width:18px;
height:18px;
min-width:18px;
margin:0;
cursor:pointer;
}

/* ===================================== */
/* INPUTS */
/* ===================================== */

input,
select,
textarea{
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:12px;
font-size:15px;
outline:none;
transition:.2s;
background:#fff;
}

input:focus,
select:focus,
textarea:focus{
border-color:#0073e6;
box-shadow:0 0 0 3px rgba(0,115,230,.12);
}

textarea{
min-height:120px;
resize:vertical;
}

/* ===================================== */
/* ERROR */
/* ===================================== */

.error{
border:2px solid #e00000 !important;
background:#fff2f2 !important;
}

/* ===================================== */
/* BOTONES */
/* ===================================== */

.buttons{
display:flex;
justify-content:space-between;
gap:10px;
margin-top:30px;
flex-wrap:wrap;
}

button{
padding:14px 26px;
border:none;
border-radius:12px;
cursor:pointer;
font-size:16px;
font-weight:700;
transition:.2s;
}

button:hover{
transform:translateY(-1px);
}

.next{
background:#0073e6;
color:#fff;
}

.prev{
background:#ddd;
color:#111;
}

.send{
background:#25D366;
color:#fff;
width:100%;
margin-top:18px;
}

/* ===================================== */
/* PROGRESO */
/* ===================================== */

.progress{
height:8px;
background:#ececec;
border-radius:99px;
overflow:hidden;
margin-bottom:30px;
}

.bar{
height:100%;
width:33%;
background:#0073e6;
transition:.3s ease;
}

/* ===================================== */
/* CAPTCHA */
/* ===================================== */

.g-recaptcha{
margin-top:18px;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:768px){

.wrap{
padding:22px;
border-radius:16px;
}

h2{
font-size:24px;
}

button{
width:100%;
}

.buttons{
flex-direction:column;
}

label:has(input[type="checkbox"]){
font-size:15px;
}
}

@media(max-width:480px){

.wrap{
padding:18px;
}

h2{
font-size:22px;
}

input,
select,
textarea{
font-size:14px;
padding:12px;
}

button{
font-size:15px;
}
}