/* =========================
   Estilo claro y cálido
   Inspiración: tono esperanzador / infantil
   ========================= */

:root{
  --bg1:#f7fbff;
  --bg2:#fff7f2;

  --text:#1a2540;
  --muted:rgba(26,37,64,.72);

  /* acentos “amables”: cielo, coral, menta y dorado (esperanza) */
  --sky:#4aa3ff;
  --mint:#22c7b8;
  --coral:#ff6f7d;
  --gold:#f2c14e;

  --card:#ffffff;
  --cardBorder:rgba(26,37,64,.10);
  --shadow:0 18px 45px rgba(26,37,64,.12);
  --radius:18px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  min-height:100vh;
  padding:28px 16px;

  /* Fondo luminoso con “burbujas” */
  background:
    radial-gradient(900px 500px at 10% 12%, rgba(74,163,255,.22), transparent 60%),
    radial-gradient(800px 520px at 90% 20%, rgba(255,111,125,.20), transparent 60%),
    radial-gradient(650px 500px at 55% 92%, rgba(34,199,184,.18), transparent 60%),
    linear-gradient(160deg, var(--bg1), var(--bg2));
}

.wrap{
  width:min(1040px, 100%);
  margin:0 auto;
}

header{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
  flex-wrap:wrap;
}

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

.logo{
  width:66px;
  height:66px;
  border-radius: 18px;
  background: rgba(255,255,255,.85);
  border:1px solid var(--cardBorder);
  box-shadow: var(--shadow);
  display:grid;
  place-items:center;
  overflow:hidden;
  flex: 0 0 auto;
}

.logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:10px;
}

.logo.logo-fallback{
  font-weight:900;
  letter-spacing:.5px;
  color:var(--sky);
}

.title h1{
  font-size: clamp(18px, 2vw + 10px, 26px);
  margin:0;
  letter-spacing:.2px;
}
.title p{
  margin:6px 0 0 0;
  color:var(--muted);
  font-size: 14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,.72);
  border:1px solid var(--cardBorder);
  padding:10px 12px;
  border-radius:999px;
  color: rgba(26,37,64,.78);
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(26,37,64,.10);
  white-space:nowrap;
}

.pulse{
  width:9px;height:9px;border-radius:50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(34,199,184,.40);
  animation: pulse 1.8s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(34,199,184,.35); }
  70%{ box-shadow: 0 0 0 10px rgba(34,199,184,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,199,184,0); }
}

.grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
}
@media (max-width: 880px){
  .grid{ grid-template-columns: 1fr; }
  .pill{ width:100%; justify-content:flex-start; }
}

.card{
  background: var(--card);
  border: 1px solid var(--cardBorder);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card .inner{ padding: 22px; }

.hero h2{
  font-size: clamp(24px, 2.2vw + 12px, 40px);
  margin:0 0 10px 0;
  letter-spacing: .2px;
}
.hero p{
  margin:0 0 16px 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 68ch;
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}

a.btn, button.btn{
  appearance:none;
  border:none;
  cursor:pointer;
  text-decoration:none;
  color: var(--text);
  background: rgba(26,37,64,.04);
  border: 1px solid rgba(26,37,64,.12);
  padding: 12px 14px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  font-weight: 700;
  letter-spacing:.2px;
}

a.btn:hover, button.btn:hover{
  transform: translateY(-1px);
  background: rgba(26,37,64,.06);
  border-color: rgba(26,37,64,.18);
}

.btn-icon{
  display:inline-grid;
  place-items:center;
  width:22px;height:22px;
  border-radius:8px;
  background: rgba(34,199,184,.16);
  color: var(--mint);
  font-weight:900;
}

.btn.primary{
  background: linear-gradient(90deg, rgba(74,163,255,.22), rgba(255,111,125,.18));
  border-color: rgba(74,163,255,.30);
}
.btn.primary .btn-icon{
  background: rgba(255,111,125,.18);
  color: var(--coral);
}

.ig{
  width:18px;height:18px;
  display:inline-block;
  border-radius:6px;
  background:
    radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 30%, #d62976 55%, #962fbf 75%, #4f5bd5 100%);
  position: relative;
}
.ig::after{
  content:"";
  position:absolute;
  inset:4px;
  border:2px solid rgba(255,255,255,.95);
  border-radius:5px;
}
.ig::before{
  content:"";
  position:absolute;
  width:4px;height:4px;
  right:5px; top:5px;
  background: rgba(255,255,255,.95);
  border-radius:50%;
}

.small{
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

.donationBox{
  background: linear-gradient(180deg, rgba(74,163,255,.08), rgba(34,199,184,.05));
  border-top: 1px solid rgba(26,37,64,.10);
  padding: 16px 18px;
}

.kv{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:10px;
  align-items:center;
  margin: 10px 0;
}

.label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing:.14em;
  color: rgba(26,37,64,.60);
  margin-bottom: 6px;
}
.label.mini{
  margin:0 0 6px 0;
}

.value{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  word-break: break-word;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(26,37,64,.10);
  padding: 10px 12px;
  border-radius: 12px;
}

.copyBtn{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(26,37,64,.14);
  background: rgba(255,255,255,.9);
  color: var(--text);
  font-weight: 800;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  white-space:nowrap;
}
.copyBtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,1);
  border-color: rgba(26,37,64,.22);
}

.mutCard h3{
  margin:0 0 12px 0;
  font-size: 18px;
  letter-spacing:.2px;
}

.steps{
  display:grid;
  gap:10px;
  margin-top: 10px;
}

.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background: rgba(26,37,64,.03);
  border:1px solid rgba(26,37,64,.10);
  border-radius: 14px;
  padding: 12px;
}

.badge{
  width:28px;height:28px;border-radius:10px;
  display:grid;place-items:center;
  background: rgba(242,193,78,.22);
  border:1px solid rgba(242,193,78,.34);
  color: #8b5b00;
  font-weight: 900;
  flex:0 0 auto;
}

.step p{
  margin:0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14.5px;
}
.step strong{ color: var(--text); }

.note{
  margin-top:14px;
  padding:12px 12px;
  border-radius: 14px;
  background: rgba(255,111,125,.10);
  border: 1px solid rgba(255,111,125,.18);
}

a.inline{
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(74,163,255,.55);
  text-underline-offset: 3px;
}

footer{
  margin-top: 14px;
  display:flex;
  gap:10px;
  justify-content:space-between;
  flex-wrap:wrap;
  color: rgba(26,37,64,.60);
  font-size: 12.5px;
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(26,37,64,.92);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(26,37,64,.20);
  opacity: 0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  font-size: 13px;
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Logos al fondo, SIEMPRE en horizontal y ajustados al ancho */
.partners-full{
  margin-top: 18px;      /* no dependemos de auto */
  display: grid;
  grid-template-columns: 1fr 1fr;  /* SIEMPRE dos columnas */
  gap: 18px;
  width: 100%;
  align-items: center;
}

/* Cada logo ocupa la mitad del ancho (menos el gap) */
.partners-full img{
  width: 100%;
  max-width: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;

  border-radius: 22px;
  background: rgba(255,255,255,.85);
  padding: 14px;

  box-shadow: 0 18px 42px rgba(26,37,64,.14);
  transition: transform .18s ease, box-shadow .18s ease;
}

.partners-full img:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 26px 54px rgba(26,37,64,.18);
}
