/* =========================================================
   Seguros Vial - HOME (Diseño tipo flujo SOAT)
   Paleta: Azul + Lima (estilo limpio / corporativo)
   ========================================================= */

:root{
  --blue:#2f6fed;
  --blue-2:#1e4fd7;
  --lime:#dbe300;
  --lime-2:#c9d600;

  --ink:#0f172a;
  --muted:#64748b;
  --line:#e5e7eb;
  --bg:#ffffff;
  --bg-soft:#f6f8fc;

  --radius-lg:18px;
  --radius-md:14px;
  --radius-pill:999px;

  --shadow: 0 12px 30px rgba(15,23,42,.12);
  --shadow-soft: 0 10px 24px rgba(15,23,42,.10);
  --ring: 0 0 0 3px rgba(47,111,237,.22);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a{ color: var(--blue); }
.no-scroll{ overflow:hidden; }

/* ================= TOPBAR ================= */
.topbar{
  position: sticky;
  top:0;
  z-index:50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 12px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.topbar-left{
  display:flex;
  align-items:center;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 220px;
}

.brand-badge{
  width:34px;height:34px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color:#fff;
  font-weight: 900;
  letter-spacing:.02em;
}

.brand-name{
  font-weight: 900;
  line-height: 1.05;
}
.brand-sub{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.topbar-nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.topbar-link{
  font-size: 13px;
  font-weight: 700;
  text-decoration:none;
  color: #1f2937;
}
.topbar-link:hover{ color: var(--blue); }

.topbar-right{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.topbar-cta{
  border: none;
  cursor:pointer;
  background: linear-gradient(135deg, var(--lime), var(--lime-2));
  color:#0b1220;
  font-weight: 900;
  letter-spacing:.08em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}
.topbar-cta:hover{ filter: brightness(1.02); transform: translateY(-1px); }

.steps-bar{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.step-indicator{
  display:flex;
  align-items:center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.step-indicator-number{
  width:24px;height:24px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 2px solid #cbd5e1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
  font-weight: 900;
  color:#334155;
}
.step-indicator.active{ color: var(--blue); }
.step-indicator.active .step-indicator-number{
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,111,237,.14);
}

/* Responsive topbar */
@media (max-width: 860px){
  .topbar{ padding: 10px 12px; }
  .topbar-nav{ display:none; }
}
@media (max-width: 520px){
  .step-indicator span{ display:none; }
}

/* ================= HERO SPLIT ================= */
.hero-split{
  position: relative;
  min-height: 420px;
  overflow:hidden;
}

.hero-photo{
  position:absolute;
  inset:0;
  background-position:left center;
  background-size: cover;
  background-repeat:no-repeat;
  filter: saturate(1.05);
}

.hero-blue{
  position:absolute;
  top:0; right:-80px;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-top-left-radius: 220px;
  border-bottom-left-radius: 220px;
}

.hero-card{
  position: relative;
  z-index: 2;
  width: min(520px, 92vw);
  margin: 70px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  padding: 22px 22px 18px;
}

.hero-card-title h1{
  margin:0;
  font-size: 26px;
  line-height: 1.08;
  font-weight: 900;
  color: #1e293b;
}
.hero-card-title h1 span{
  color: var(--blue);
}
.hero-card-title p{
  margin: 10px 0 14px;
  color: #334155;
  font-weight: 700;
  font-size: 13px;
}

.hero-card-form input,
.hero-card-form select{
  width:100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 14px;
  outline:none;
  background: #fff;
  color:#0f172a;
  margin-bottom: 12px;
}
.hero-card-form input:focus,
.hero-card-form select:focus{
  border-color: rgba(47,111,237,.85);
  box-shadow: var(--ring);
}

.hero-help{
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

.hero-strip{
  position:absolute;
  left:0; right:0; bottom:0;
  background: linear-gradient(90deg, var(--lime), var(--lime-2));
  color:#0b1220;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 14px;
  text-align:center;
  z-index: 3;
}

@media (max-width: 980px){
  .hero-blue{ width: 70%; }
}
@media (max-width: 640px){
  .hero-card{ margin-top: 56px; }
  .hero-card-title h1{ font-size: 22px; }
}

/* ================= MINI THREE ================= */
.mini-three{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.mini-item{
  padding: 18px 14px;
  text-align:center;
  font-weight: 900;
  color:#1e293b;
  border-right: 1px solid var(--line);
}
.mini-item:last-child{ border-right:none; }
@media (max-width: 820px){
  .mini-three{ grid-template-columns: 1fr; }
  .mini-item{ border-right:none; border-bottom: 1px solid var(--line); }
  .mini-item:last-child{ border-bottom:none; }
}

/* ================= FLOW SECTION ================= */
.flow-section{
  background: #fff;
  padding: 26px 16px 34px;
}

.flow-wrap{
  max-width: 1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns: minmax(240px, .9fr) minmax(0, 1.3fr) minmax(240px, .9fr);
  gap: 16px;
  align-items:start;
}

.flow-title h2{
  margin:0 0 4px;
  font-size: 20px;
  font-weight: 900;
}
.flow-title p{
  margin:0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.panel{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 16px 16px 14px;
}
.panel-soft{ background: var(--bg-soft); }
.panel-title{
  font-weight: 900;
  font-size: 14px;
  color:#111827;
  margin-bottom: 10px;
}

.panel-row{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  font-size: 13px;
  padding: 6px 0;
  border-top: 1px dashed rgba(148,163,184,.45);
}
.panel-row:first-of-type{ border-top:none; padding-top: 0; }
.panel-row span{ color: var(--muted); }

.pay-amount{
  font-size: 24px;
  font-weight: 1000;
  color: var(--blue-2);
  margin: 4px 0 6px;
}

.small-muted{
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
  margin-top: 6px;
}

/* switch */
.switch-row{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  font-size: 12px;
  color: #334155;
}
.switch{
  position: relative;
  width: 44px;
  height: 24px;
}
.switch input{ display:none; }
.switch .slider{
  position:absolute;
  inset:0;
  background: #cbd5e1;
  border-radius: var(--radius-pill);
  transition: .2s;
}
.switch .slider::before{
  content:"";
  position:absolute;
  width:18px;height:18px;
  left:3px; top:3px;
  border-radius: var(--radius-pill);
  background: #fff;
  transition: .2s;
  box-shadow: 0 4px 10px rgba(15,23,42,.16);
}
.switch input:checked + .slider{
  background: rgba(47,111,237,.55);
}
.switch input:checked + .slider::before{
  transform: translateX(20px);
}

.step{ display:none; }
.step.active{ display:block; }

.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 12px;
}
.form-field.full{ grid-column: 1 / -1; }

.form-field label{
  font-size: 12px;
  font-weight: 800;
  color:#334155;
  display:block;
  margin-bottom: 6px;
}

.form-field input,
.form-field select{
  width:100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 14px;
  outline:none;
}
.form-field input:focus,
.form-field select:focus{
  border-color: rgba(47,111,237,.85);
  box-shadow: var(--ring);
}

.form-note .note-box{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  background: #eef4ff;
  border: 1px solid rgba(47,111,237,.18);
  border-radius: 12px;
  padding: 12px 12px;
  color: #1e3a8a;
  font-size: 12px;
  line-height: 1.35;
}
.note-icon{
  width:22px;height:22px;
  border-radius: var(--radius-pill);
  background: rgba(47,111,237,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  margin-top: 1px;
}

.check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-size: 12px;
  color:#334155;
  line-height: 1.35;
}
.check input{ margin-top: 2px; accent-color: var(--blue); }

.actions{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.field-error{
  background: #fff1f2;
  border: 1px solid rgba(225,29,72,.25);
  color: #9f1239;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.35;
}

/* summary */
.summary-lines{
  display:flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.sum-row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(148,163,184,.45);
}
.sum-row:last-child{ border-bottom:none; }
.sum-row span{ color: var(--muted); }
.sum-total{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  font-weight: 1000;
  padding-top: 10px;
  border-top: 1px solid rgba(15,23,42,.12);
}

/* pay list */
.pay-list{
  margin: 0;
  padding-left: 18px;
  color:#334155;
  font-size: 13px;
}
.pay-list li{ margin: 8px 0; }

/* responsive flow */
@media (max-width: 980px){
  .flow-wrap{
    grid-template-columns: 1fr;
  }
}

/* ================= BUTTONS ================= */
.btn-lime{
  border:none;
  cursor:pointer;
  background: linear-gradient(135deg, var(--lime), var(--lime-2));
  color:#0b1220;
  font-weight: 1000;
  padding: 12px 14px;
  border-radius: 14px;
  width:100%;
  box-shadow: var(--shadow-soft);
  transition: transform .12s ease, filter .12s ease;
}
.btn-lime:hover{ transform: translateY(-1px); filter: brightness(1.01); }

.btn-outline{
  border: 2px solid rgba(47,111,237,.25);
  background: #fff;
  color: var(--blue-2);
  font-weight: 1000;
  padding: 11px 14px;
  border-radius: 14px;
  cursor:pointer;
}
.btn-outline:hover{ background: rgba(47,111,237,.06); }

.btn-full{ width:100%; }

/* ================= MODALS ================= */
.modal-backdrop{
  position: fixed;
  inset:0;
  background: rgba(15,23,42,.55);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 14px;
  z-index: 9999;
}
.modal-backdrop.active{ display:flex; }

.modal{
  width: min(420px, 92vw);
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 60px rgba(15,23,42,.28);
  padding: 18px 18px 16px;
  position: relative;
}
.modal-wide{ width: min(520px, 92vw); }

.modal-x{
  position:absolute;
  top: 10px;
  right: 12px;
  border:none;
  background: transparent;
  font-size: 22px;
  cursor:pointer;
  color:#334155;
}

.modal-title{
  text-align:center;
  font-weight: 1000;
  font-size: 18px;
  margin-bottom: 10px;
}

.modal-head h3{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 1000;
  color:#111827;
}

.modal-bullets{
  margin: 0;
  padding-left: 18px;
  color:#334155;
  font-size: 13px;
  line-height: 1.45;
}
.modal-bullets li{ margin: 10px 0; }

.modal-actions{ margin-top: 14px; display:flex; justify-content:center; }

.modal-pill{
  display:flex;
  justify-content:center;
  gap: 6px;
  align-items:center;
  background: #eef4ff;
  border: 1px solid rgba(47,111,237,.20);
  color:#1e3a8a;
  border-radius: var(--radius-pill);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  margin: 8px auto 12px;
  width: fit-content;
}

.modal-box{
  border: 1px solid rgba(148,163,184,.45);
  border-radius: 16px;
  overflow:hidden;
  background: #f8fbff;
}
.modal-box-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  background: var(--blue-2);
  color:#fff;
  font-weight: 900;
  padding: 10px 12px;
  font-size: 13px;
}
.modal-plate{
  background: #fff;
  color:#0b1220;
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 1000;
}

.modal-box-body{
  padding: 14px 14px 12px;
  text-align:center;
}
.modal-label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  margin-bottom: 4px;
}
.modal-price{
  font-size: 28px;
  font-weight: 1000;
  color: var(--blue-2);
}
.modal-note{
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  text-align:center;
  line-height: 1.35;
}
.modal-footer{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
@media (max-width: 520px){
  .modal-footer{ grid-template-columns: 1fr; }
}

/* ================= CONTENT SECTIONS (kept from your HTML) ================= */
.steps-section,
.why-section,
.compare-section,
.testimonials-section,
.faq-section{
  max-width: 1120px;
  margin: 44px auto 0;
  padding: 0 16px;
}

.section-kicker{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 900;
  margin-bottom: 6px;
}

.section-title-main{
  font-size: 22px;
  font-weight: 1000;
  margin: 0 0 8px;
  color:#0b1220;
}

.section-description{
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
}

/* Steps cards */
.steps-wrapper{
  display:grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 16px;
}
.step-card{
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-soft);
}
.step-number{
  width:30px;height:30px;
  border-radius: var(--radius-pill);
  background: rgba(47,111,237,.10);
  border: 1px solid rgba(47,111,237,.20);
  color: var(--blue-2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  margin-bottom: 10px;
}
.step-title{ font-weight: 1000; margin: 0 0 4px; }
.step-text{ margin: 0; color: var(--muted); font-size: 13px; line-height: 1.4; }

/* Why */
.why-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.why-item{
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px 14px;
  box-shadow: var(--shadow-soft);
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.why-icon{ font-size: 20px; }
.why-text-title{ font-weight: 1000; margin-bottom: 4px; }
.why-text-body{ color: var(--muted); font-size: 13px; line-height: 1.4; }

/* Compare table */
.compare-table{
  width:100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
}
.compare-table th, .compare-table td{
  border-bottom: 1px solid var(--line);
  padding: 10px 10px;
  text-align:left;
}
.compare-table th{
  background: #f2f6ff;
  font-weight: 1000;
}
.compare-tag{
  display:inline-flex;
  align-items:center;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 900;
  border: 1px solid rgba(47,111,237,.20);
}
.compare-tag.soat{ background: rgba(47,111,237,.10); color: var(--blue-2); }
.compare-tag.tercero{ background: #f1f5f9; color:#334155; }

/* Testimonials */
.testimonials-grid{
  display:grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 18px;
}
.testimonial-card{
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-soft);
}
.testimonial-text{ color: var(--muted); font-size: 13px; margin: 0 0 10px; }
.testimonial-author{ font-weight: 1000; }
.testimonial-meta{ color: var(--muted); font-size: 11px; }

/* FAQ */
.faq-list details{
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 10px;
}
.faq-list summary{
  list-style:none;
  cursor:pointer;
  font-weight: 1000;
}
.faq-list summary::marker,
.faq-list summary::-webkit-details-marker{ display:none; }
.faq-answer{ margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.45; }

/* ================= FOOTER ================= */
.site-footer{
  margin-top: 54px;
  background: #0b1220;
  color: rgba(255,255,255,.85);
}
.footer-inner{
  max-width: 1120px;
  margin:0 auto;
  padding: 26px 16px 18px;
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.footer-brand{ display:flex; flex-direction: column; gap: 6px; font-size: 13px; color: rgba(255,255,255,.72); }
.footer-brand-name{ color: #fff; font-weight: 1000; }
.footer-links h4{ color:#fff; margin: 0 0 10px; font-weight: 1000; font-size: 13px; }
.footer-links ul{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin-bottom: 8px; font-size: 13px; color: rgba(255,255,255,.72); }
.footer-links a{ color: rgba(255,255,255,.78); text-decoration:none; }
.footer-links a:hover{ text-decoration: underline; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 12px 16px;
  text-align:center;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}
@media (max-width: 900px){
  .footer-inner{ grid-template-columns: 1fr; }
}

/* ================= COOKIE BANNER ================= */
.cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15,23,42,.22);
  padding: 12px 12px;
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:space-between;
  font-size: 12px;
  color:#334155;
}
.cookie-banner a{ color: var(--blue); font-weight: 800; }
.cookie-btn{
  border:none;
  cursor:pointer;
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(135deg, var(--lime), var(--lime-2));
  color:#0b1220;
  font-weight: 1000;
}
@media (max-width: 620px){
  .cookie-banner{ flex-direction: column; align-items:stretch; }
  .cookie-btn{ width:100%; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; scroll-behavior:auto !important; }
}


/* ================= UNIFICACIÓN SECCIONES (info-block) ================= */
.info-block{
  max-width: 1120px;
  margin: 44px auto 0;
  padding: 0 16px;
}

/* ================= INFO WRAPPER / PRODUCTOS ================= */
.info-wrapper{
  margin-top: 44px;
  padding: 0 16px;
}

.product-grid{
  display:grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 16px;
}

.product-card{
  border: 1px solid var(--line);
  border-radius: 14px;
  background:#fff;
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-soft);
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.product-card img{
  width:100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.08);
  background:#f1f5f9;
}

.product-title{
  margin:0;
  font-weight: 1000;
  font-size: 15px;
  color:#0b1220;
}

.product-text{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.btn-info{
  margin-top: 4px;
  border: 2px solid rgba(47,111,237,.25);
  background:#fff;
  color: var(--blue-2);
  font-weight: 1000;
  padding: 11px 14px;
  border-radius: 14px;
  cursor:pointer;
}
.btn-info:hover{ background: rgba(47,111,237,.06); }

/* ================= BENEFICIOS (Complementa tu SOAT) ================= */
.benefits-section{
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}

.section-title{
  margin:0 0 6px;
  font-size: 18px;
  font-weight: 1000;
  color:#0b1220;
}
.section-subtitle{
  margin:0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.benefits-note{
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 10px;
}

.benefits-list{
  display:grid;
  gap: 12px;
}

.benefit-item{
  border: 1px solid var(--line);
  border-radius: 14px;
  background:#fff;
  padding: 12px 12px;
  box-shadow: var(--shadow-soft);
  display:flex;
  gap: 10px;
  align-items:flex-start;
}

.benefit-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(47,111,237,.10);
  border: 1px solid rgba(47,111,237,.18);
  font-size: 18px;
}

.benefit-title{
  font-weight: 1000;
  font-size: 13px;
  margin-bottom: 2px;
  color:#0b1220;
}
.benefit-text{
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

/* ================= AMPAROS ================= */
.amparos-section{
  margin-top: 18px;
}

.amparos-section h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 1000;
  color:#0b1220;
}

.amparos-section p{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.amparo-card{
  border: 1px solid var(--line);
  border-radius: 16px;
  background:#fff;
  box-shadow: var(--shadow-soft);
  padding: 14px 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.amparo-icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(47,111,237,.10);
  border: 1px solid rgba(47,111,237,.18);
  font-size: 18px;
}

.amparo-content h4{
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 1000;
}

.amparo-content p{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Responsive benefits */
@media (max-width: 980px){
  .benefits-section{ grid-template-columns: 1fr; }
}

