
.section-contacto{
  padding:80px 20px;
  background:var(--bg-soft);              /* fondo por defecto */
  border-top:1px solid var(--border-light);
  position:relative;                      /* necesario para el overlay opcional */
}

.section-contacto .section-inner{
  max-width:1120px;
  margin:0 auto;
  position:relative;
  z-index:1;                              /* por encima del overlay */
}

/* Variante solo color (ej. azul suave) */
.section-contacto.bg-alt{
  background:#f2f2f2;                     /* #F5F1E6 #e5f2ff #f2f2f2 el color que quieras */
}

/* Variante con imagen de fondo + overlay suave */
.section-contacto.bg-image{
  background:url("images/22-p-1080.png") center/cover no-repeat fixed;
}

.section-contacto.bg-image::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.8);       /* ajusta opacidad del velo */
  z-index:0;
}


.section-title{
  font-size:26px;
  margin-bottom:10px;
  color:var(--dark);
}
.section-sub{
  font-size:14px;
  color:#4B5563;
  margin-bottom:28px;
}

.contact-wrapper{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:28px;
}
form.contact-form{
  background:#ffffff;
  border-radius:14px;
  padding:20px;
  border:1px solid var(--border-light);
}
.form-row{
  display:flex;
  gap:12px;
  margin-bottom:10px;
}
.form-field{
  flex:1;
  display:flex;
  flex-direction:column;
  font-size:13px;
  color:var(--dark);
}
.form-field label{margin-bottom:4px;}
.form-field input,
.form-field textarea,
.form-field select{
  padding:8px 10px;
  border-radius:8px;
  border:1px solid #D1D5DB;
  font-size:13px;
}
.form-field textarea{min-height:80px;resize:vertical;}
.form-helper{
  font-size:11px;
  color:#6B7280;
  margin-top:2px;
}
.contact-side{
  font-size:14px;
  color:#374151;
}
.contact-side strong{color:var(--dark);}
.contact-side ul{
  list-style:disc;
  margin-left:18px;
  margin-top:8px;
}
.contact-side li{margin-bottom:4px;}

.section-title-main {
  text-align:center;
  font-size:32px;
  letter-spacing:0.06em;
}

.section-title-main span {
  color:var(--blue);
  font-weight:700;
}

.section-title-main::after {
  content:"";
  display:block;
  width:80px;
  height:3px;
  background:var(--blue);
  margin:8px auto 0;
  border-radius:999px;
}

.how-header {
  text-align: center;
  margin-bottom: 32px;
}

.how-header h2 {
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}

.how-header h2 span {
  color: var(--blue);
  font-weight: 800;
}

.how-underline {
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  margin: 14px auto 18px;
}

.how-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563;
}