/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 22 2025 | 17:36:18 */
/* Incrustamos Montserrat (ajusta la ruta si cambias la carpeta) */

:root{
  --banner:#8EBCE0;
  --title:#043764;
  --accent:#265B86;
  --cta:#8DBBE0;
  --cta-hover:#5b7caa;
  --panel:#EAF4FB;
  --border:#d0d0d0;
  --text:#0f172a;
  --white:#fff;
  --radius:20px;
}
*{box-sizing:border-box}
.grid{
  display:grid;
  gap:50px;
  margin-top:28px;
  grid-template-columns:repeat(3,minmax(280px,1fr));
  font-family:"Montserrat",sans-serif;
}
@media (max-width:900px){
  .grid{grid-template-columns:1fr}
}
.card{
  border:2px solid var(--border);
  border-radius:20px;
  padding:26px 18px;
  text-align:center;
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
  transition:transform .2s ease, box-shadow .2s ease;
  font-family:"Montserrat",sans-serif;
}
.card:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 18px rgba(0,0,0,0.15);
}
.card h3 {
  margin:10px 0 8px;
  color:var(--accent);
  font-family:"Montserrat",sans-serif !important;
  font-weight:700 !important;
  font-size:22px;   /* <-- antes 28px */
  line-height:1.3;
}
.card p{
  font-size:18px;
  line-height:1.6;
  color:#1f2937;
  font-weight:400;
  margin:0 0 18px 0;
}
.card .cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  min-height:44px;
  padding:0 26px;
  border-radius:50px;
  font-weight:700;
  font-size:14px;
  font-family:"Montserrat",sans-serif;
  background:var(--cta);
  color:#265B86;
  text-decoration:none;
  transition:background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card .cta:hover{
  background:var(--cta-hover);
  color:#fff;
  transform:translateY(-2px);
}
.card .cta:focus,
.card .cta:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px var(--panel), 0 0 0 6px var(--text);
}
.card .icon{
  width:56px;
  height:auto;
  margin:0 auto 12px;
  display:block
}
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto!important}
  .card, .card .cta{transition:none!important;transform:none!important}
}


/* ====== SECCIÓN AYUDA (WCAG AAA, full width) ====== */
.help,
.help * { 
  box-sizing: border-box; 
}

.help {
  width: 100%;
  margin: 32px 0;
  font-family: "Montserrat", sans-serif;
  flex: 0 0 100%;
  padding-inline: 12px; /* respiración lateral */
}

.help__card {
  background: #265B86;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  word-wrap: break-word;
  overflow: visible;
}

.help__icon {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
}

.help__icon svg { 
  width: 30px; 
  height: 30px; 
  fill: #fff; 
}

.help__content {
  flex: 1;
  min-width: 0;
}

.help__title {
  margin: 0 0 6px 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  font-family: "Montserrat", sans-serif;
}

.help__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  opacity: .95;
}

.help__actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
}

.help__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}

.help__btn--primary {
  background: #fff;
  color: #265B86;
}

.help__btn--ghost {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.help__btn:hover {
  transform: translateY(-1px);
}

.help__btn:focus,
.help__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px #EAF4FB, 0 0 0 6px #0f172a;
}

@media (prefers-reduced-motion: reduce){
  .help__btn { transition: none !important; transform: none !important; }
}

/* Responsive */
@media (max-width: 820px){
  .help__card { 
    flex-direction: column; 
    text-align: center; 
    padding: 22px; 
    align-items: stretch;
  }
  .help__icon { margin-bottom: 12px; }
  .help__actions { 
    justify-content: center; 
    width: 100%; 
  }
  .help__btn { 
    width: auto; /* cámbialo a 100% si quieres botones full-width */
  }
}

