/* ============================================================
   AJAL LOL — footer.css
   ============================================================ */

#footer { background: var(--text-dark); color: rgba(255,255,255,.65); }

/* ─── Donaciones ─── */
.footer-donate {
  background: linear-gradient(135deg, var(--rose-mid), var(--rose-deep));
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-donate::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(245,198,212,.15), transparent 60%);
  pointer-events: none;
}
.footer-donate::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}

.footer-donate-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: .8rem;
  position: relative;
}

.footer-donate-desc {
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-weight: 400;
  font-size: .95rem;
  position: relative;
}

/* ─── Acordeón donaciones ─── */
.fd-accordion {
  max-width: 520px;
  margin: 0 auto 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
}

.fd-item {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.fd-item:hover {
  border-color: rgba(255,255,255,.30);
  background: rgba(255,255,255,.12);
}
.fd-item.fd-open {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.14);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

/* Header del acordeón */
.fd-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s ease;
}
.fd-header:hover { background: rgba(255,255,255,.06); }

.fd-header__left {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.fd-header__icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  transition: background .25s ease, color .25s ease;
}

.fd-header__icon--bank {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
.fd-item.fd-open .fd-header__icon--bank {
  background: rgba(255,255,255,.25);
  color: #fff;
}

.fd-header__icon--paypal {
  background: rgba(0, 112, 186, 0.30);
  color: #5bc4f5;
}
.fd-item.fd-open .fd-header__icon--paypal {
  background: #0070ba;
  color: #fff;
}

.fd-header__title {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.fd-header__chevron {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: transform .3s ease, color .2s ease;
  flex-shrink: 0;
}
.fd-item.fd-open .fd-header__chevron {
  transform: rotate(180deg);
  color: rgba(255,255,255,.9);
}

/* Contenido del acordeón */
.fd-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Cuerpo banco ─── */
.fd-bank-body {
  padding: .9rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border-top: 1px solid rgba(255,255,255,.10);
}

.fd-bank-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  text-align: center;
}

.fd-bank-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.fd-bank-value {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}

.fd-bank-mono {
  font-family: monospace;
  letter-spacing: 1px;
  font-size: .9rem;
}

.fd-bank-clabe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .5rem 1rem;
  width: 100%;
}

.fd-copy-btn {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 8px;
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.fd-copy-btn:hover {
  background: rgba(255,255,255,.28);
  color: #fff;
  transform: scale(1.08);
}

/* Separador visual entre filas */
.fd-bank-row + .fd-bank-row {
  padding-top: .6rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
/* ─── Cuerpo PayPal ─── */
.fd-paypal-body {
  padding: 0 1.2rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: .9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.fd-paypal-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  text-align: center;
  margin: 0;
}

/* ─── Botón PayPal ─── */
.btn-paypal {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  background: #fff;
  padding: .75rem 1.6rem .75rem .75rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: .93rem;
  text-decoration: none;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  cursor: pointer;
}
.btn-paypal:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  background: #f0f7ff;
}

.btn-paypal__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003087, #0070ba);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; flex-shrink: 0;
  transition: transform .25s ease;
}
.btn-paypal:hover .btn-paypal__icon { transform: scale(1.08); }

.btn-paypal__content {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: .1rem;
}
.btn-paypal__label { color: #003087; font-size: .93rem; font-weight: 800; line-height: 1; }
.btn-paypal__sub   { color: #0070ba; font-size: .7rem; font-weight: 500; opacity: .8; }
.btn-paypal__arrow {
  color: #003087; font-size: .85rem; opacity: .5;
  transition: transform .25s ease, opacity .25s ease;
}
.btn-paypal:hover .btn-paypal__arrow { transform: translateX(4px); opacity: 1; }

/* ─── Vacío ─── */
.fd-empty {
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  font-style: italic;
  text-align: center;
  padding: 1rem 0;
}

/* ─── Thanks ─── */
.footer-donate .thanks {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  margin-top: 1.4rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.footer-donate .thanks i { color: rgba(255,255,255,.4); font-size: .7rem; }

/* ─── Cuerpo footer ─── */
.footer-main {
  padding: 4rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 3.5rem;
  padding-inline: 10%;
}
.footer-about .sitename {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--white);
  display: block; margin-bottom: 1.1rem; font-style: italic;
}
.footer-about p { font-size: .88rem; line-height: 1.8; font-weight: 400; }

.footer-links h4,
.footer-social h4 {
  color: var(--white); font-size: .75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .88rem; color: rgba(255,255,255,.5);
  transition: color var(--transition), padding-left var(--transition);
  display: flex; align-items: center; gap: .45rem;
}
.footer-links a i     { font-size: .7rem; color: var(--rose-soft); }
.footer-links a:hover { color: var(--rose-pale); padding-left: .3rem; }

.footer-social .social-row { display: flex; gap: .8rem; margin-top: .6rem; }
.footer-social .social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 1rem;
  transition: var(--transition); cursor: pointer;
}
.footer-social .social-row a:hover {
  background: var(--rose-mid); border-color: var(--rose-mid); color: var(--white);
  transform: translateY(-4px); box-shadow: 0 6px 20px rgba(192,84,122,.35);
}

/* ─── Bottom ─── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.6rem 0; text-align: center;
  font-size: .8rem; color: rgba(255,255,255,.3);
}
.footer-bottom span { color: rgba(255,255,255,.5); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .social-row { display: flex; justify-content: center; }
  .fd-accordion { max-width: 100%; }
  .btn-paypal { padding: .65rem 1.4rem .65rem .65rem; }
  .btn-paypal__icon { width: 36px; height: 36px; font-size: 1rem; }
}