/* ========================= */
/* ARREPENTIMIENTO DE COMPRA */
/* ========================= */

.arrepentimiento-header{
background:#fff;
padding:50px 0 30px;
text-align:center;
margin-bottom:40px;
}

.arrepentimiento-header h1{
font-size:34px;
font-weight:700;
color:#222;
margin-bottom:14px;
}

.arrepentimiento-header p{
font-size:15.5px;
color:#666;
max-width:720px;
margin:0 auto;
line-height:1.6;
}

.arrepentimiento-section{
padding-bottom:80px;
}

.arrepentimiento-card{
background:#fff;
padding:40px;
border-radius:18px;
box-shadow:0 12px 30px rgba(0,0,0,.08);
}

@media(max-width:576px){
.arrepentimiento-card{
padding:26px 20px;
}
}

/* ========================= */
/* ALERTAS */
/* ========================= */

.alerta-exito,
.alerta-error{
display:flex;
align-items:flex-start;
gap:14px;
padding:18px 20px;
border-radius:12px;
margin-bottom:24px;
font-size:14.5px;
}

.alerta-exito{
background:#e7f8ef;
color:#198754;
}

.alerta-error{
background:#fdeaec;
color:#b02a37;
}

.alerta-exito i,
.alerta-error i{
font-size:20px;
margin-top:2px;
}

.alerta-exito strong,
.alerta-error strong{
display:block;
margin-bottom:4px;
color:#222;
}

.alerta-error ul{
margin:6px 0 0;
padding-left:18px;
}

/* ========================= */
/* FORMULARIO */
/* ========================= */

.campos-intro{
font-size:15px;
color:#333;
margin-bottom:20px;
}

.arrepentimiento-card .form-control,
.arrepentimiento-card .form-select{
height:52px;
border-radius:10px;
border:1px solid #ddd;
padding:12px 16px;
font-size:15px;
box-shadow:none;
transition:.2s;
}

.arrepentimiento-card .form-control:focus,
.arrepentimiento-card .form-select:focus{
border-color:#b720eb;
box-shadow:0 0 0 3px rgba(183,32,235,.12);
}

.label-select{
display:block;
font-size:14px;
font-weight:600;
color:#333;
margin-bottom:8px;
}

.label-select span{
color:#dc3545;
}

.campo-obligatorio{
font-size:13px;
color:#888;
margin:0;
}

.campo-oculto{
position:absolute;
left:-9999px;
width:1px;
height:1px;
opacity:0;
pointer-events:none;
}

.declaracion-check{
display:flex;
align-items:flex-start;
gap:10px;
background:#f8f9fb;
border:1px solid #eee;
border-radius:10px;
padding:14px 16px;
}

.declaracion-check input{
margin-top:4px;
width:18px;
height:18px;
flex:0 0 auto;
accent-color:#b720eb;
cursor:pointer;
}

.declaracion-check label{
font-size:13.5px;
color:#555;
line-height:1.5;
cursor:pointer;
}

/* ========================= */
/* BOTON */
/* ========================= */

.btn-enviar-arrepentimiento{
width:100%;
height:52px;
border:none;
border-radius:12px;
font-size:16px;
font-weight:600;
color:#fff;
background:linear-gradient(90deg,#7b2cff,#c433ff);
transition:.2s;
}

.btn-enviar-arrepentimiento:hover{
transform:translateY(-2px);
opacity:.95;
}