/* =============================================
   MARPANET — main.css v3 (full light, premium)
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D2A4E;
  --blue:       #1A6DB5;
  --sky:        #3B9FD6;
  --light-blue: #D6ECFA;
  --bg:         #F4F8FD;
  --bg2:        #EAF2FB;
  --white:      #FFFFFF;
  --text:       #1A2533;
  --text-mid:   #3D5066;
  --text-light: #6B7E96;
  --border:     #D0E2F2;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 8px rgba(13,42,78,0.08);
  --shadow:     0 6px 28px rgba(13,42,78,0.11);
  --shadow-lg:  0 16px 48px rgba(13,42,78,0.14);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ========== HEADER ========== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.site-logo img {
  height: 32px !important;
  width: auto !important;
  max-width: 180px !important;
}
nav#main-nav ul { display: flex; gap: 32px; list-style: none; }
nav#main-nav a {
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
nav#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width var(--transition);
}
nav#main-nav a:hover { color: var(--blue); }
nav#main-nav a:hover::after { width: 100%; }

.header-cta a {
  background: var(--blue);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 3px 10px rgba(26,109,181,0.25);
}
.header-cta a:hover { background: var(--navy); transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: var(--transition);
}

/* ========== HERO ========== */
#hero {
  background: var(--bg);
  padding: 130px 0 80px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
/* subtle dot grid background */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--sky);
  border-radius: 50%;
}
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.hero-content h1 span { color: var(--blue); }
.hero-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.93rem;
  box-shadow: 0 4px 16px rgba(26,109,181,0.30);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,42,78,0.25); }

.btn-outline {
  border: 2px solid var(--border);
  color: var(--text-mid);
  padding: 11px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.93rem;
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.hero-phone-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 18px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.97rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.hero-phone-strip:hover { box-shadow: var(--shadow); }
.hero-phone-strip svg { color: var(--blue); flex-shrink: 0; }

.hero-image-wrap {
  position: relative;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 70%; height: 70%;
  background: var(--light-blue);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; left: -16px;
  width: 50%; height: 50%;
  background: var(--bg2);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.hero-image {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 440px; object-fit: cover; }

/* Floating badge on hero image */
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}
.hero-badge-icon {
  width: 40px; height: 40px;
  background: var(--bg2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-icon svg { color: var(--blue); }
.hero-badge strong { display: block; font-size: 0.95rem; color: var(--navy); font-weight: 700; }
.hero-badge span { font-size: 0.78rem; color: var(--text-light); }

/* ========== SECCIÓN COMMONS ========== */
section { padding: 88px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-lead {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 580px;
}

/* ========== STATS BAND ========== */
#stats-band {
  background: var(--navy);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.stat-block {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-block strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.stat-block span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ========== QUIÉNES SOMOS ========== */
#quienes-somos { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.about-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 240px; object-fit: cover; }

.about-img-sm {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about-img-sm img { width: 100%; height: 150px; object-fit: cover; }

.about-text p {
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: 0.97rem;
  line-height: 1.85;
}
.about-checks {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-mid);
}
.about-check::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231A6DB5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ========== CÓMO TRABAJAMOS ========== */
#como-trabajamos {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-header { text-align: center; max-width: 520px; margin: 0 auto 52px; }
.steps-header .section-label { justify-content: center; }
.steps-header .section-lead { margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(16.66% + 18px);
  right: calc(16.66% + 18px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.step-circle {
  width: 52px; height: 52px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1rem; font-weight: 800; color: var(--blue);
  box-shadow: 0 0 0 6px var(--bg);
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ========== SERVICIOS ========== */
#servicios { background: var(--white); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.service-icon svg { color: var(--blue); }
.service-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.89rem; color: var(--text-light); line-height: 1.78; }

/* ========== GALERÍA / IMAGEN INTERMEDIA ========== */
#galeria {
  padding: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.galeria-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0;
}
.galeria-item { overflow: hidden; position: relative; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.galeria-item:hover img { transform: scale(1.04); }
.galeria-item.tall { grid-row: 1 / 3; }

/* ========== CTA BAND ========== */
#cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a8a 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
#cta-band::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(77,163,212,0.15) 0%, transparent 70%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cta-text p { color: rgba(255,255,255,0.65); font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.93rem;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover { background: var(--bg); transform: translateY(-1px); }
.cta-phone {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-phone svg { color: var(--sky); }
.cta-phone:hover { color: white; }

/* ========== CONTACTO ========== */
#contacto { background: var(--bg); border-top: 1px solid var(--border); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.contact-items { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.contact-item:hover { box-shadow: var(--shadow); }
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--bg2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { color: var(--blue); }
.contact-item strong {
  display: block;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-item a, .contact-item span {
  color: var(--navy); font-weight: 600; font-size: 0.95rem;
}
.contact-item a:hover { color: var(--blue); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--navy); font-size: 1.15rem; font-weight: 700; margin-bottom: 26px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(26,109,181,0.08); }
.form-group textarea { resize: vertical; min-height: 104px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%; background: var(--blue); color: white;
  border: none; border-radius: var(--radius);
  padding: 14px; font-size: 0.97rem; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 6px;
  box-shadow: 0 4px 14px rgba(26,109,181,0.28);
}
.btn-submit:hover { background: var(--navy); transform: translateY(-1px); }

/* ========== FOOTER ========== */
#site-footer {
  background: var(--navy);
}

.footer-main { padding: 44px 0 36px; }
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo img {
  height: 30px !important; width: auto !important;
  max-width: 170px !important;
  filter: brightness(0) invert(1);
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-align: center; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  transition: color var(--transition); font-weight: 500;
}
.footer-nav a:hover { color: var(--sky); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}

/* Kit Digital — dentro del footer oscuro */
.footer-kitdigital {
  padding: 28px 0 24px;
}
.footer-kitdigital img {
  max-width: 960px;
  width: 100%;
  height: auto;
  max-height: 90px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

/* Legales */
.footer-legal-bar {
  padding: 14px 0;
  background: rgba(0,0,0,0.18);
}
.footer-legal-links {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 0.76rem; color: rgba(255,255,255,0.40);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--sky); }
.footer-legal-links span { color: rgba(255,255,255,0.15); font-size: 0.76rem; user-select: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .galeria-item.tall { grid-row: auto; }
}

@media (max-width: 960px) {
  .hero-grid, .about-grid, .services-header,
  .contact-grid, .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  nav#main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  nav#main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 28px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  nav#main-nav.open ul { flex-direction: column; gap: 18px; }
  .hero-image img, .about-img-main img { height: 260px; }
  .hero-badge { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  #hero { padding: 110px 0 60px; }
  .hero-actions { flex-direction: column; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .galeria-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: flex-start; }
  .about-images { grid-template-columns: 1fr; }
  .about-img-sm { display: none; }
}

/* Scroll fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== SINGLE PAGE (Legal pages, etc) ========== */
#single-page {
  padding: 140px 0 80px;
  background: var(--bg);
  min-height: 70vh;
}
.page-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  max-width: 860px;
  margin: 0 auto;
}
.page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.page-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.page-body {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
}
.page-body h1, .page-body h2, .page-body h3, .page-body h4 {
  color: var(--navy);
  font-weight: 700;
  margin: 28px 0 14px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.page-body h2 { font-size: 1.35rem; }
.page-body h3 { font-size: 1.1rem; }
.page-body h4 { font-size: 1rem; }
.page-body strong { color: var(--navy); font-weight: 700; }
.page-body p { margin-bottom: 16px; }
.page-body ul, .page-body ol { margin: 14px 0 18px 24px; }
.page-body li { margin-bottom: 8px; }
.page-body a { color: var(--blue); text-decoration: underline; }
.page-body a:hover { color: var(--navy); }
.page-body blockquote {
  border-left: 3px solid var(--blue);
  background: var(--bg);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-mid);
}
.page-body hr { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

@media (max-width: 720px) {
  #single-page { padding: 110px 0 60px; }
  .page-content { padding: 32px 24px; }
}

/* ========== FIX: admin bar ========== */
body.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar #site-header { top: 46px; }
}



/* ===== Fix: panel del plugin OneTap Accessibility — evitar espacio bajo footer ===== */
.onetap-accessibility {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  overflow: visible;
}
.onetap-accessibility.onetap-toggle-open,
.onetap-accessibility .onetap-container,
.onetap-accessibility nav,
.onetap-accessibility section {
  pointer-events: auto;
}
