:root{
  --bg:#0b0f14;
  --panel:#101722;
  --panel2:#0f1620;
  --text:#f5f7fa;
  --muted:#b8c0d0;
  --line:#223043;
  --teal:#2da6aa;
  --teal2:#22868a;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:24px;
}

/* =========================
   HEADER / NAV
   ========================= */

.topbar{
  position:sticky;
  top:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  background:rgba(10,12,16,0.92);
  border-bottom:1px solid rgba(255,255,255,0.06);
  backdrop-filter:blur(10px);
  z-index:50;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
}

.brand-logo{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.1);
}

.brand-text span{
  display:block;
  font-size:12px;
  color:var(--muted);
}

.nav{
  display:flex;
  gap:22px;
}

.nav a{
  color:var(--muted);
  font-weight:600;
}

.nav a:hover{
  color:var(--text);
}

.nav a.active{
  border:1px solid rgba(45,166,170,0.35);
  background:rgba(45,166,170,0.12);
  border-radius:999px;
  padding:8px 12px;
}

.nav .nav-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  color:rgba(255,255,255,0.78);
  text-decoration:none;
  border:1px solid transparent;
  transition:180ms ease;
}

.nav .nav-link:hover{
  color:rgba(255,255,255,0.95);
  border-color:rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.04);
}

.nav .nav-link.is-active{
  color:rgba(255,255,255,0.98);
  border-color:rgba(45,166,170,0.35);
  background:rgba(45,166,170,0.14);
  box-shadow:0 8px 22px rgba(0,0,0,0.25);
}

/* =========================
   BOTONES
   ========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:16px;
  font-weight:700;
  cursor:pointer;
}

.btn-primary{
  background:var(--teal);
  color:#061014;
  border:0;
}

.btn-outline{
  border:2px solid var(--teal);
  color:var(--text);
  background:transparent;
}

.btn-outline:hover{
  background:rgba(45,166,170,0.15);
}

.btn-sm{
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
}

/* =========================
   HERO
   ========================= */

.hero{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:30px;
  margin-top:20px;
  align-items:stretch;
}

.hero-left{
  background:var(--panel);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:28px;
  padding:28px;
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
}

.badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(45,166,170,0.18);
  color:var(--teal);
  font-weight:800;
  font-size:12px;
  letter-spacing:0.6px;
}

.hero-left h1{
  margin:18px 0 14px;
  font-size:56px;
  line-height:1.05;
}

.hero-left p{
  color:var(--muted);
  font-size:18px;
  line-height:1.5;
  max-width:560px;
}

.hero-actions{
  display:flex;
  gap:14px;
  margin-top:18px;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}

.stat{
  background:var(--panel2);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:18px;
  padding:12px 14px;
}

.stat small{
  display:block;
  color:var(--muted);
}

.stat strong{
  display:block;
  margin-top:3px;
}

.hero-right .pastors-photo{
  height:100%;
  min-height:380px;
  background:linear-gradient(135deg, rgba(45,166,170,0.25), rgba(255,255,255,0.04));
  position:relative;
}

.pastors-photo{
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.04);
  box-shadow:0 18px 45px rgba(0,0,0,0.35);
  min-height:360px;
}

.pastors-photo::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(45,166,170,0.30), rgba(0,0,0,0) 55%);
}

.pastors-placeholder{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:900;
  color:rgba(245,247,250,0.75);
  font-size:34px;
}

.pastors-placeholder span{
  font-size:18px;
  color:rgba(184,192,208,0.85);
}

/* =========================
   TARJETAS / GRIDS GENERALES
   ========================= */

.explore{
  margin:34px 0 10px;
}

.explore h2{
  margin:0 0 14px;
  font-size:34px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.card{
  display:flex;
  gap:14px;
  padding:18px;
  background:var(--panel);
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.06);
  transition:transform .15s ease, border-color .15s ease;
}

.card:hover{
  transform:translateY(-3px);
  border-color:rgba(45,166,170,0.5);
}

.card h3{
  margin:0 0 6px;
  line-height:1.2;
}

.card p{
  margin:0;
  color:var(--muted);
  text-align:justify;
  line-height:1.75;
}

.card p + p{
  margin-top:12px;
}

.card ul{
  text-align:justify;
  line-height:1.7;
}

.card p,
.card li{
  hyphens:auto;
}

.explore .card{
  align-items:flex-start;
}

.icon,
.explore .card .icon{
  width:54px;
  height:54px;
  min-width:54px;
  border-radius:18px;
  border:1px solid rgba(45,166,170,0.35);
  background:rgba(45,166,170,0.14);
  display:flex;
  align-items:center;
  justify-content:center;
}

.explore .card .icon svg,
.card .icon svg{
  width:26px;
  height:26px;
  fill:none;
  stroke:rgba(215,255,254,0.95);
  stroke-width:1.9;
}

/* =========================
   FORMULARIOS / ALERTAS
   ========================= */

.muted{
  color:var(--muted);
  margin:0 0 16px;
}

.form label{
  display:block;
  margin:10px 0 8px;
  color:var(--muted);
  font-weight:700;
}

.form input,
.form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.10);
  background:#0b111a;
  color:var(--text);
  outline:none;
}

.form input:focus,
.form textarea:focus{
  border-color:rgba(45,166,170,0.7);
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:14px;
}

.form-grid .full{
  grid-column:1 / -1;
}

.alert{
  margin:10px 0 16px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.10);
  font-weight:700;
}

.alert-ok{
  background:rgba(45,166,170,0.14);
  border-color:rgba(45,166,170,0.45);
  color:#d7fffe;
}

.alert-bad{
  background:rgba(255,70,70,0.10);
  border-color:rgba(255,70,70,0.35);
  color:#ffe2e2;
}

/* =========================
   SECCIONES VARIAS
   ========================= */

.prayer{
  margin-top:34px;
  background:var(--panel);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:28px;
  padding:24px;
}

.prayer h2{
  margin:0 0 6px;
}

.event-banner{
  margin-top:14px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(0,0,0,0.12);
}

.event-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.chip{
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  border:1px solid rgba(45,166,170,0.35);
  background:rgba(45,166,170,0.14);
  color:#d7fffe;
}

.chip-soft{
  border-color:rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.06);
  color:var(--text);
}

.cal{
  width:56px;
  min-width:56px;
  height:56px;
  border-radius:18px;
  border:1px solid rgba(45,166,170,0.35);
  background:rgba(45,166,170,0.14);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.cal-mon{
  font-size:11px;
  font-weight:900;
  letter-spacing:.8px;
  color:rgba(215,255,254,0.95);
}

.cal-day{
  font-size:20px;
  font-weight:1000;
  line-height:1;
}

.about-photo{
  width:100%;
  height:auto;
  max-height:620px;
  object-fit:contain;
  display:block;
  border-radius:14px;
}

/* =========================
   POSTS
   ========================= */

.posts-search-row{
  display:flex;
  gap:12px;
  align-items:flex-end;
  flex-wrap:wrap;
}

.posts-search-input{
  flex:1;
  min-width:260px;
}

.posts-search-actions{
  display:flex;
  gap:10px;
  align-items:flex-end;
}

.posts-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.post-card{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,0.25);
  transition:transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.post-card:hover{
  transform:translateY(-3px);
  border-color:rgba(45,166,170,0.30);
  background:rgba(255,255,255,0.05);
}

.post-card-media{
  position:relative;
  width:100%;
  height:170px;
  background:rgba(255,255,255,0.02);
}

.post-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.02) contrast(1.02);
}

.post-card-fallback{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:8px;
  background:
    radial-gradient(1200px 220px at 10% 10%, rgba(45,166,170,0.35), transparent 55%),
    radial-gradient(900px 200px at 90% 20%, rgba(255,255,255,0.10), transparent 55%),
    rgba(0,0,0,0.15);
}

.fallback-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  border:1px solid rgba(45,166,170,0.35);
  background:rgba(45,166,170,0.14);
  display:flex;
  align-items:center;
  justify-content:center;
}

.fallback-icon svg{
  width:26px;
  height:26px;
  fill:none;
  stroke:rgba(215,255,254,0.95);
  stroke-width:1.9;
}

.fallback-text{
  color:rgba(255,255,255,0.75);
  font-weight:900;
  letter-spacing:0.2px;
  font-size:13px;
}

.post-card-body{
  padding:14px 14px 16px;
}

.post-card-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.post-card-title{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.2;
  font-weight:1000;
  letter-spacing:-0.2px;
}

.post-card-excerpt{
  margin:0;
  color:var(--muted);
  line-height:1.55;
  min-height:44px;
}

.post-card-cta{
  margin-top:12px;
  display:flex;
  justify-content:flex-start;
}

.pagination{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:16px;
}

.pagination-info{
  color:var(--muted);
  font-weight:800;
}

.is-disabled{
  pointer-events:none;
  opacity:0.5;
}

/* =========================
   POST DETALLE
   ========================= */

.post-article{
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  padding:18px 18px 16px;
  box-shadow:0 18px 45px rgba(0,0,0,0.22);
}

.post-article-content{
  color:var(--text);
  line-height:1.75;
  font-size:18px;
}

.post-article-content p{
  margin:0 0 12px;
}

.post-article-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.08);
}

/* =========================
   ABOUT
   ========================= */

.about-copy{
  color:var(--muted);
  line-height:1.8;
  text-align:justify;
  margin:0 0 14px;
}

.about-estiven-top{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:14px;
  margin-top:14px;
}

.about-estiven-photo,
.about-estiven-summary,
.about-estiven-story{
  align-items:flex-start;
}

.about-estiven-image-wrap{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
}

.about-estiven-image{
  width:100%;
  height:520px;
  object-fit:cover;
  object-position:center top;
  display:block;
}

.about-estiven-mini{
  margin-top:14px;
  background:rgba(255,255,255,0.02);
}

.about-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.8;
}

.about-quote{
  margin-top:12px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(45,166,170,0.22);
  background:rgba(45,166,170,0.10);
  color:#e9ffff;
  font-weight:700;
  line-height:1.7;
}

/* =========================
   PASTORES
   ========================= */

.pastors-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:14px;
}

.pastor-card{
  background:var(--panel);
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.06);
  overflow:hidden;
  transition:all .25s ease;
}

.pastor-card:hover{
  transform:translateY(-4px);
  border-color:rgba(45,166,170,0.25);
}

.pastor-photo{
  height:360px;
  overflow:hidden;
}

.pastor-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.pastor-body{
  padding:22px;
}

.pastor-body h3{
  margin:0 0 10px;
}

.pastor-text{
  color:var(--muted);
  line-height:1.8;
  text-align:justify;
  margin:0 0 14px;
}

/* =========================
   OFRENDAS
   ========================= */

.offering-bank-box{
  margin-top:10px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  line-height:1.9;
}

.offerings-hero{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:16px;
  margin-top:14px;
}

.offerings-hero-left,
.offerings-bank-card,
.offerings-side-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:26px;
  box-shadow:0 18px 45px rgba(0,0,0,0.22);
}

.offerings-hero-left{
  padding:24px;
}

.offerings-hero-left h1{
  margin:14px 0 10px;
  font-size:48px;
  line-height:1.04;
}

.offerings-lead{
  max-width:58ch;
  color:var(--muted);
  line-height:1.85;
  text-align:justify;
}

.offerings-verse{
  margin-top:16px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.02);
}

.offerings-verse h3{
  margin:0 0 8px;
}

.offerings-verse p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  text-align:justify;
}

.offerings-hero-right{
  display:grid;
  gap:16px;
}

.offerings-bank-card{
  padding:22px;
}

.offerings-bank-head{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.offerings-bank-head h3{
  margin:0 0 6px;
}

.offerings-bank-head p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.offering-bank-box-pro{
  margin-top:14px;
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(45,166,170,0.18);
  background:
    radial-gradient(1200px 180px at 0% 0%, rgba(45,166,170,0.12), transparent 55%),
    rgba(255,255,255,0.02);
  line-height:2;
}

.offerings-bank-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.offerings-side-card{
  padding:20px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.offerings-side-card h3{
  margin:0 0 8px;
}

.offerings-side-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  text-align:justify;
}

.offer-icon{
  width:52px;
  min-width:52px;
  height:52px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(45,166,170,0.28);
  background:
    radial-gradient(120px 60px at 50% 0%, rgba(45,166,170,0.18), transparent 70%),
    rgba(255,255,255,0.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 10px 25px rgba(0,0,0,0.18);
}

.offer-icon-soft{
  background:
    radial-gradient(100px 60px at 50% 0%, rgba(45,166,170,0.16), transparent 70%),
    rgba(45,166,170,0.08);
}

.offer-icon svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:rgba(220,255,255,0.96);
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.offerings-trust{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}

.offering-info-card{
  align-items:flex-start;
}

.offering-info-card h3{
  margin:0 0 8px;
}

.offering-info-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  text-align:justify;
}

.offerings-form-wrap{
  margin-top:18px;
  padding:24px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
}

.offerings-form-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-end;
  margin-bottom:10px;
}

.offerings-form-wrap h2{
  margin:8px 0 6px;
}

/* =========================
   FOOTER
   ========================= */

.footer{
  margin-top:40px;
  padding:18px 24px;
  color:var(--muted);
  border-top:1px solid rgba(255,255,255,0.06);
  text-align:center;
}

/* =========================
   RESPONSIVE
   ========================= */

/* =========================
   MENU MÓVIL
   ========================= */

.nav-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:16px;
  background:rgba(45,166,170,0.14);
  border:1px solid rgba(45,166,170,0.28);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,0.18);
}

.nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:var(--text);
  border-radius:999px;
  position:relative;
}

.nav-toggle span::before,
.nav-toggle span::after{
  content:"";
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background:var(--text);
  border-radius:999px;
}

.nav-toggle span::before{
  top:-6px;
}

.nav-toggle span::after{
  top:6px;
}

.topbar-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

@media (max-width: 980px){
  .hero{
    grid-template-columns:1fr;
  }

  .grid-4{
    grid-template-columns:1fr 1fr;
  }

  .topbar{
    gap:12px;
  }

  .hero-left h1{
    font-size:42px;
  }

  .hero-stats{
    grid-template-columns:1fr;
  }

  .form-grid,
  .offerings-hero,
  .about-estiven-top,
  .offerings-trust{
    grid-template-columns:1fr;
  }

  .posts-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .about-estiven-image{
    height:380px;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .nav{
    display:none;
    position:absolute;
    top:calc(100% + 10px);
    right:24px;
    left:24px;
    flex-direction:column;
    gap:8px;
    padding:14px;
    border-radius:22px;
    background:rgba(10,12,16,0.98);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 45px rgba(0,0,0,0.35);
    backdrop-filter:blur(10px);
  }

  .nav.is-open{
    display:flex;
  }

  .nav a,
  .nav .nav-link{
    width:100%;
    justify-content:flex-start;
  }
}

@media (max-width: 900px){
  .pastors-grid{
    grid-template-columns:1fr;
  }

  .pastor-photo{
    height:220px;
  }
}

@media (max-width: 640px){
  .posts-grid{
    grid-template-columns:1fr;
  }

  .post-card-media{
    height:180px;
  }

  .pagination{
    flex-direction:column;
    align-items:stretch;
  }
}

/* =========================
   ABOUT PAGE
   ========================= */

.hero-about{
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 14px;
}

.about-hero-copy{
  min-width: 0;
}

.about-hero-title{
  font-size: 35px;
  line-height: 1.05;
  margin: 18px 0 14px;
  max-width: 12ch;
  text-wrap: balance;
}

.about-hero-text{
  max-width: 62ch;
}

.about-hero-chips{
  margin-top: 12px;
}

.about-hero-actions{
  margin-top: 14px;
  flex-wrap: wrap;
}

.about-hero-photo{
  min-height: 340px;
}

.about-hero-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-about-history,
.section-about-pastors,
.section-about-estiven,
.section-about-mission{
  margin-top: 26px;
}

.about-history-grid{
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 16px;
  margin-top: 14px;
}

.about-card{
  align-items: flex-start;
}

.about-card h3{
  margin-top: 0;
}

.about-card p{
  margin: 0;
}

.about-estiven-photo-content{
  width: 100%;
}

.about-estiven-summary h3,
.about-estiven-story h3{
  margin-top: 0;
}

.about-estiven-chips{
  margin-top: 12px;
}

.about-estiven-mini{
  margin-top: 14px;
  padding: 16px;
  display: block;
}

.about-estiven-mini-content h4{
  margin: 0 0 10px;
}

.about-mission-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

/* =========================
   CONTACT PAGE
   ========================= */

.hero-contact{
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.contact-hero-copy{
  min-width: 0;
}

.contact-hero-title{
  font-size: 44px;
  line-height: 1.05;
  margin: 18px 0 14px;
  max-width: 12ch;
  text-wrap: balance;
}

.contact-hero-text{
  max-width: 40ch;
}

.contact-info-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

.contact-info-card{
  align-items: flex-start;
}

.contact-info-body{
  min-width: 0;
}

.contact-info-body h3{
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-info-body p{
  margin: 0;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: none;
}

.contact-muted-line{
  color: var(--muted);
  margin-top: 10px !important;
}

.contact-map-btn{
  margin-top: 14px;
  width: fit-content;
}

.contact-form-section{
  margin-top: 16px;
}

.contact-submit-btn{
  margin-top: 16px;
}

/* =========================
   ABOUT + CONTACT RESPONSIVE
   ========================= */

@media (max-width: 1100px){
  .hero-about{
    grid-template-columns: 1fr;
  }

  .about-history-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px){
  .about-mission-grid,
  .contact-info-grid{
    grid-template-columns: 1fr;
  }

  .about-hero-title{
    font-size: 32px;
    max-width: 100%;
  }

  .contact-hero-title{
    font-size: 38px;
    max-width: 100%;
  }

  .about-hero-text,
  .contact-hero-text{
    max-width: 100%;
  }

  .about-hero-photo{
    min-height: 280px;
  }

  .pastors-photo.about-hero-photo{
    min-height: 280px;
  }
}

@media (max-width: 640px){
  .about-hero-title{
    font-size: 26px;
    line-height: 1.12;
  }

  .contact-hero-title{
    font-size: 26px;
    line-height: 1.12;
  }

  .hero-left{
    padding: 22px 18px;
    border-radius: 24px;
  }

  .about-hero-actions,
  .hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero-actions .btn,
  .hero-actions .btn,
  .contact-map-btn,
  .contact-submit-btn{
    width: 100%;
  }

  .about-hero-photo{
    min-height: 220px;
  }

  .about-estiven-image{
    height: 320px;
  }

  .pastor-body{
    padding: 18px;
  }

  .pastor-text,
  .about-copy,
  .contact-info-body p{
    font-size: 16px;
    line-height: 1.7;
  }

  .contact-info-card,
  .about-card,
  .about-estiven-photo,
  .about-estiven-summary,
  .about-estiven-story{
    padding: 16px;
    border-radius: 20px;
  }

  .contact-info-card{
    gap: 12px;
  }

  .icon,
  .explore .card .icon{
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .chip{
    font-size: 11px;
  }
}

/* =========================
   ABOUT HERO PRO
   ========================= */

.hero-about{
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap:28px;
  margin-top:14px;
  align-items:stretch;
}

.about-hero-copy{
  min-width:0;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.about-hero-title{
  margin:18px 0 16px;
  font-size:clamp(2.6rem, 4vw, 4.4rem);
  line-height:1.04;
  letter-spacing:-1.2px;
  max-width:10ch;
  text-wrap:balance;
}

.about-hero-text{
  margin:0;
  max-width:58ch;
  color:var(--muted);
  font-size:1.15rem;
  line-height:1.75;
}

.about-hero-chips{
  margin-top:18px;
}

.about-hero-actions{
  margin-top:22px;
  flex-wrap:wrap;
}

.about-hero-visual{
  min-width:0;
  display:flex;
}

.about-hero-photo-card{
  position:relative;
  width:100%;
  min-height:620px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  box-shadow:0 24px 60px rgba(0,0,0,0.32);
}

.about-hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.about-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(4,10,18,0.72) 0%, rgba(4,10,18,0.20) 42%, rgba(4,10,18,0.06) 100%);
  pointer-events:none;
}

.about-hero-floating{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  padding:16px 18px;
  border-radius:22px;
  background:rgba(8,16,28,0.72);
  border:1px solid rgba(255,255,255,0.10);
  backdrop-filter:blur(10px);
  box-shadow:0 12px 30px rgba(0,0,0,0.22);
}

.about-hero-floating-label{
  display:block;
  margin-bottom:6px;
  color:rgba(215,255,254,0.86);
  font-size:12px;
  font-weight:800;
  letter-spacing:.9px;
  text-transform:uppercase;
}

.about-hero-floating strong{
  display:block;
  color:var(--text);
  font-size:1.05rem;
  line-height:1.35;
}

/* secciones about más limpias */
.section-about-history,
.section-about-pastors,
.section-about-estiven,
.section-about-mission{
  margin-top:34px;
}

.about-history-grid{
  display:grid;
  grid-template-columns:1.35fr 0.65fr;
  gap:18px;
  margin-top:16px;
}

.about-mission-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:16px;
}

.about-card{
  align-items:flex-start;
}

.about-card h3{
  margin:0 0 10px;
}

.about-card p{
  margin:0;
}

.about-estiven-top{
  display:grid;
  grid-template-columns:minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap:18px;
  margin-top:16px;
}

.about-estiven-photo,
.about-estiven-summary,
.about-estiven-story{
  align-items:flex-start;
}

.about-estiven-photo-content{
  width:100%;
}

.about-estiven-image-wrap{
  border-radius:22px;
  overflow:hidden;
}

.about-estiven-image{
  width:100%;
  height:560px;
  object-fit:cover;
  object-position:center top;
  display:block;
}

.about-estiven-summary h3,
.about-estiven-story h3{
  margin:0 0 10px;
}

.about-estiven-mini{
  margin-top:16px;
  padding:16px;
  display:block;
  border-radius:20px;
}

.about-estiven-mini-content h4{
  margin:0 0 10px;
}

.about-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.8;
}

.about-quote{
  margin-top:14px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(45,166,170,0.22);
  background:rgba(45,166,170,0.10);
  color:#e9ffff;
  font-weight:700;
  line-height:1.7;
}

/* =========================
   ABOUT RESPONSIVE PRO
   ========================= */

@media (max-width: 1200px){
  .about-hero-title{
    max-width:11ch;
  }

  .about-hero-photo-card{
    min-height:560px;
  }
}

@media (max-width: 1024px){
  .hero-about{
    grid-template-columns:1fr;
  }

  .about-hero-title{
    max-width:100%;
  }

  .about-hero-text{
    max-width:100%;
  }

  .about-hero-photo-card{
    min-height:420px;
  }

  .about-history-grid,
  .about-mission-grid,
  .about-estiven-top{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .about-hero-copy{
    padding:26px 22px;
  }

  .about-hero-title{
    font-size:clamp(2rem, 8vw, 3rem);
    line-height:1.08;
    letter-spacing:-0.8px;
  }

  .about-hero-text{
    font-size:1rem;
    line-height:1.7;
  }

  .about-hero-photo-card{
    min-height:300px;
    border-radius:24px;
  }

  .about-hero-floating{
    left:14px;
    right:14px;
    bottom:14px;
    padding:14px 15px;
    border-radius:18px;
  }

  .about-estiven-image{
    height:380px;
  }
}

@media (max-width: 640px){
  .about-hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .about-hero-actions .btn{
    width:100%;
  }

  .about-hero-copy{
    padding:22px 18px;
  }

  .about-hero-title{
    font-size:2.1rem;
  }

  .about-hero-photo-card{
    min-height:240px;
  }

  .about-estiven-image{
    height:320px;
  }
}

/* =========================
   ABOUT PREMIUM PAGE
   ========================= */

.about-page{
  padding-top: 14px;
  padding-bottom: 12px;
}

.about-section{
  margin-top: 34px;
}

.about-section-head{
  margin-bottom: 16px;
}

.about-section-head h2{
  margin: 0 0 8px;
}

/* HERO */
.about-premium-hero{
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap:28px;
  align-items:stretch;
}

.about-premium-copy,
.about-premium-photo-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:30px;
  box-shadow:0 22px 55px rgba(0,0,0,0.25);
}

.about-premium-copy{
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.about-premium-title{
  margin:18px 0 16px;
  max-width:8.8ch;
  font-size:clamp(2.9rem, 4.4vw, 5rem);
  line-height:0.98;
  letter-spacing:-1.8px;
  text-wrap:balance;
}

.about-premium-lead{
  margin:0;
  max-width:58ch;
  color:var(--muted);
  font-size:1.12rem;
  line-height:1.75;
}

.about-premium-chips{
  margin-top:18px;
}

.about-premium-actions{
  margin-top:24px;
  flex-wrap:wrap;
}

.about-premium-visual{
  min-width:0;
}

.about-premium-photo-card{
  position:relative;
  min-height:680px;
  overflow:hidden;
}

.about-premium-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.about-premium-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(4,10,18,0.72) 0%, rgba(4,10,18,0.16) 42%, rgba(4,10,18,0.03) 100%);
  pointer-events:none;
}

.about-premium-floating-card{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  padding:16px 18px;
  border-radius:22px;
  background:rgba(8,16,28,0.72);
  border:1px solid rgba(255,255,255,0.10);
  backdrop-filter:blur(10px);
  box-shadow:0 12px 30px rgba(0,0,0,0.22);
}

.about-premium-floating-kicker{
  display:block;
  margin-bottom:6px;
  color:rgba(215,255,254,0.90);
  font-size:12px;
  font-weight:800;
  letter-spacing:.9px;
  text-transform:uppercase;
}

.about-premium-floating-card strong{
  display:block;
  color:var(--text);
  font-size:1.05rem;
  line-height:1.35;
}

/* PANELS */
.about-essence-grid{
  display:grid;
  grid-template-columns:1.35fr 0.65fr;
  gap:18px;
}

.about-panel{
  align-items:flex-start;
}

.about-panel-body{
  min-width:0;
}

.about-panel-body h3{
  margin:0 0 10px;
}

.about-panel-body p{
  margin:0;
}

.about-panel-body p + p{
  margin-top:12px;
}

.about-panel-compact .about-list{
  margin-top:2px;
}

/* STORY */
.about-story-layout{
  display:grid;
  grid-template-columns:minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap:18px;
  margin-bottom:18px;
}

.about-story-photo-card,
.about-story-summary-card,
.about-story-full{
  align-items:flex-start;
}

.about-story-photo-wrap{
  width:100%;
}

.about-story-chips{
  margin-top:14px;
}

.about-story-mini{
  margin-top:16px;
  padding:16px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.02);
}

.about-story-mini h4{
  margin:0 0 10px;
}

.about-story-full{
  margin-top:0;
}

.about-estiven-image-wrap{
  border-radius:22px;
  overflow:hidden;
}

.about-estiven-image{
  width:100%;
  height:560px;
  object-fit:cover;
  object-position:center top;
  display:block;
}

/* MISSION */
.about-mission-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

/* TEXT HELPERS */
.about-copy{
  color:var(--muted);
  line-height:1.8;
  text-align:justify;
  margin:0 0 14px;
}

.about-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.8;
}

.about-quote{
  margin-top:14px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(45,166,170,0.22);
  background:rgba(45,166,170,0.10);
  color:#e9ffff;
  font-weight:700;
  line-height:1.7;
}

/* RESPONSIVE */
@media (max-width: 1280px){
  .about-premium-title{
    max-width:9.6ch;
    font-size:clamp(2.7rem, 4vw, 4.4rem);
  }

  .about-premium-photo-card{
    min-height:620px;
  }
}

@media (max-width: 1100px){
  .about-premium-hero,
  .about-story-layout,
  .about-essence-grid,
  .about-mission-grid{
    grid-template-columns:1fr;
  }

  .about-premium-title{
    max-width:100%;
  }

  .about-premium-lead{
    max-width:100%;
  }

  .about-premium-photo-card{
    min-height:420px;
  }
}

@media (max-width: 768px){
  .about-premium-copy{
    padding:26px 22px;
    border-radius:24px;
  }

  .about-premium-photo-card{
    min-height:320px;
    border-radius:24px;
  }

  .about-premium-title{
    font-size:clamp(2.2rem, 8vw, 3.2rem);
    line-height:1.03;
    letter-spacing:-1px;
  }

  .about-premium-lead{
    font-size:1rem;
    line-height:1.7;
  }

  .about-premium-floating-card{
    left:14px;
    right:14px;
    bottom:14px;
    padding:14px 15px;
    border-radius:18px;
  }

  .about-estiven-image{
    height:380px;
  }
}

@media (max-width: 640px){
  .about-premium-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .about-premium-actions .btn{
    width:100%;
  }

  .about-premium-copy{
    padding:22px 18px;
  }

  .about-premium-title{
    font-size:2.2rem;
    line-height:1.06;
  }

  .about-premium-photo-card{
    min-height:250px;
  }

  .about-estiven-image{
    height:320px;
  }

  .about-story-mini{
    padding:14px;
  }
}

/* =========================
   ABOUT PREMIUM FIXES
   ========================= */

/* Página */
.about-page{
  padding-top: 14px;
  padding-bottom: 20px;
}

/* HERO */
.about-premium-hero{
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.about-premium-copy,
.about-premium-photo-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.22);
}

.about-premium-copy{
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-premium-title{
  margin: 18px 0 16px;
  max-width: 9.4ch;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -1.4px;
  text-wrap: balance;
}

.about-premium-lead{
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  text-align: justify;
  text-wrap: pretty;
}

.about-premium-chips{
  margin-top: 18px;
}

.about-premium-actions{
  margin-top: 22px;
  flex-wrap: wrap;
}

.about-premium-photo-card{
  position: relative;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.about-premium-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.about-premium-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4,10,18,0.72) 0%, rgba(4,10,18,0.18) 42%, rgba(4,10,18,0.04) 100%);
  pointer-events: none;
}

.about-premium-floating-card{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 15px 16px;
  border-radius: 20px;
  background: rgba(8,16,28,0.76);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.20);
}

.about-premium-floating-kicker{
  display: block;
  margin-bottom: 6px;
  color: rgba(215,255,254,0.90);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.about-premium-floating-card strong{
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

/* Secciones */
.about-section{
  margin-top: 30px;
}

.about-section-head{
  margin-bottom: 14px;
}

.about-section-head h2{
  margin: 0 0 8px;
}

.about-section-head .muted{
  max-width: 70ch;
  text-align: justify;
}

/* Panels */
.about-essence-grid{
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
}

.about-panel{
  align-items: flex-start;
  padding: 20px;
}

.about-panel-body{
  min-width: 0;
}

.about-panel-body h3{
  margin: 0 0 10px;
}

.about-panel-body p{
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  text-align: justify;
  text-wrap: pretty;
}

.about-panel-body p + p{
  margin-top: 12px;
}

.about-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.85;
}

.about-list li{
  margin-bottom: 4px;
  text-align: left;
}

/* Pastores */
.pastors-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

.pastor-card{
  background: var(--panel);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}

.pastor-card:hover{
  transform: translateY(-4px);
  border-color: rgba(45,166,170,0.25);
}

.pastor-photo{
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 240px;
  max-height: 340px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.pastor-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  display: block;
}

.pastor-body{
  padding: 22px;
}

.pastor-body h3{
  margin: 0 0 10px;
}

.pastor-text{
  color: var(--muted);
  line-height: 1.85;
  text-align: justify;
  text-wrap: pretty;
  margin: 0 0 14px;
}

/* Historia Estiven */
.about-story-layout{
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 16px;
  margin-bottom: 16px;
}

.about-story-photo-card,
.about-story-summary-card,
.about-story-full{
  align-items: flex-start;
  padding: 20px;
}

.about-story-photo-wrap{
  width: 100%;
}

.about-estiven-image-wrap{
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.about-estiven-image{
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.about-story-chips{
  margin-top: 14px;
}

.about-story-mini{
  margin-top: 16px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.about-story-mini h4{
  margin: 0 0 10px;
}

.about-copy{
  color: var(--muted);
  line-height: 1.9;
  text-align: justify;
  text-wrap: pretty;
  margin: 0 0 14px;
}

.about-quote{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(45,166,170,0.22);
  background: rgba(45,166,170,0.10);
  color: #e9ffff;
  font-weight: 700;
  line-height: 1.75;
  text-align: justify;
}

/* Misión y visión */
.about-mission-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Chips más bonitos */
.about-page .chip{
  padding: 8px 12px;
  font-size: 12px;
  line-height: 1.2;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1200px){
  .about-premium-title{
    max-width: 10.2ch;
    font-size: clamp(2.3rem, 3.8vw, 4rem);
  }

  .about-premium-photo-card{
    min-height: 500px;
  }
}

@media (max-width: 1100px){
  .about-premium-hero,
  .about-essence-grid,
  .about-story-layout,
  .about-mission-grid{
    grid-template-columns: 1fr;
  }

  .about-premium-title,
  .about-premium-lead{
    max-width: 100%;
  }

  .about-premium-photo-card{
    min-height: 380px;
  }
}

@media (max-width: 900px){
  .pastors-grid{
    grid-template-columns: 1fr;
  }

  .pastor-photo{
    aspect-ratio: 16 / 9;
    max-height: none;
    min-height: 220px;
  }

  .pastor-photo img{
    object-position: center 18%;
  }
}

@media (max-width: 768px){
  .about-premium-copy{
    padding: 24px 20px;
    border-radius: 24px;
  }

  .about-premium-title{
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.06;
    letter-spacing: -1px;
  }

  .about-premium-lead{
    font-size: 1rem;
    line-height: 1.75;
  }

  .about-premium-photo-card{
    min-height: 300px;
    border-radius: 24px;
  }

  .about-premium-floating-card{
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 13px 14px;
    border-radius: 18px;
  }

  .about-estiven-image{
    height: 380px;
    object-position: center 18%;
  }

  .about-panel,
  .about-story-photo-card,
  .about-story-summary-card,
  .about-story-full{
    padding: 18px;
  }

  .pastor-body{
    padding: 18px;
  }
}

@media (max-width: 640px){
  .about-premium-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .about-premium-actions .btn{
    width: 100%;
  }

  .about-premium-copy{
    padding: 22px 16px;
  }

  .about-premium-title{
    font-size: 2.15rem;
    line-height: 1.08;
    max-width: 100%;
    text-wrap: pretty;
  }

  .about-premium-lead,
  .about-copy,
  .about-panel-body p,
  .pastor-text,
  .about-section-head .muted{
    font-size: 15.5px;
    line-height: 1.8;
    text-align: justify;
  }

  .about-premium-photo-card{
    min-height: 240px;
  }

  .about-premium-image{
    object-position: center center;
  }

  .pastor-photo{
    aspect-ratio: 4 / 3;
    min-height: 210px;
  }

  .pastor-photo img{
    object-position: center 20%;
  }

  .about-estiven-image{
    height: 320px;
    object-position: center 18%;
  }

  .about-story-mini{
    padding: 14px;
  }

  .about-page .chip{
    font-size: 11px;
  }
}

/* =========================
   ABOUT HERO FINAL PRO
   ========================= */

.about-premium-hero{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:24px;
  align-items:start;
}

.about-premium-copy,
.about-premium-photo-card,
.about-hero-slider{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:30px;
  box-shadow:0 22px 55px rgba(0,0,0,0.22);
}

.about-premium-copy{
  padding:28px 26px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.about-premium-title{
  margin:22px 0 24px;
  font-size:clamp(2.8rem, 4vw, 4.8rem);
  line-height:1.08;
  letter-spacing:-1.6px;
  max-width:11ch;
  text-wrap:balance;
}

.about-premium-lead{
  margin:0;
  max-width:100%;
  color:var(--muted);
  font-size:1.04rem;
  line-height:1.85;
  text-align:justify;
  text-wrap:pretty;
}

.about-premium-chips{
  margin-top:18px;
}

.about-premium-actions{
  margin-top:22px;
  flex-wrap:wrap;
}

.about-premium-inline-note{
  margin-top:16px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(500px 100px at 0% 0%, rgba(45,166,170,0.10), transparent 60%),
    rgba(255,255,255,0.02);
  line-height:1.6;
  text-align:justify;
}

.about-premium-inline-note span{
  color:var(--muted);
  font-weight:800;
  margin-right:6px;
}

.about-premium-visual{
  display:grid;
  gap:16px;
  min-width:0;
}

.about-premium-photo-card{
  position:relative;
  min-height:450px;
  overflow:hidden;
}

.about-premium-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}

.about-premium-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(4,10,18,0.72) 0%, rgba(4,10,18,0.18) 42%, rgba(4,10,18,0.04) 100%);
  pointer-events:none;
}

.about-premium-visual-top{
  position:absolute;
  top:18px;
  left:18px;
  right:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  z-index:2;
}

.about-visual-pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(8,16,28,0.55);
  color:#f5f7fa;
  backdrop-filter:blur(8px);
  font-size:12px;
  font-weight:800;
  letter-spacing:.2px;
}

.about-premium-floating-card{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  padding:15px 16px;
  border-radius:20px;
  background:rgba(8,16,28,0.76);
  border:1px solid rgba(255,255,255,0.10);
  backdrop-filter:blur(10px);
  box-shadow:0 12px 30px rgba(0,0,0,0.20);
}

.about-premium-floating-kicker{
  display:block;
  margin-bottom:6px;
  color:rgba(215,255,254,0.90);
  font-size:11px;
  font-weight:800;
  letter-spacing:.9px;
  text-transform:uppercase;
}

.about-premium-floating-card strong{
  display:block;
  color:var(--text);
  font-size:1rem;
  line-height:1.35;
}

/* slider */
.about-hero-slider{
  padding:18px;
}

.about-hero-slider-head{
  margin-bottom:14px;
}

.about-slider-kicker{
  display:block;
  margin-bottom:6px;
  color:var(--muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.about-hero-slider-head h3{
  margin:0;
  font-size:1.15rem;
  line-height:1.25;
}

.about-slider-window{
  position:relative;
  overflow:hidden;
}

.about-slider-track{
  position:relative;
  min-height:160px;
}

.about-slide{
  display:none;
  grid-template-columns:130px 1fr;
  gap:14px;
  align-items:center;
}

.about-slide.is-active{
  display:grid;
}

.about-slide-media{
  width:100%;
  height:120px;
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,0.03);
}

.about-slide-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-slide-body strong{
  display:block;
  margin-bottom:6px;
  font-size:1rem;
  line-height:1.3;
}

.about-slide-body p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  text-align:justify;
}

.about-slider-dots{
  display:flex;
  gap:8px;
  justify-content:center;
  margin-top:14px;
}

.about-dot{
  width:10px;
  height:10px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,0.18);
  cursor:pointer;
  transition:all .2s ease;
}

.about-dot.is-active{
  width:28px;
  background:var(--teal);
}

/* mejor lectura general */
.about-panel-body p,
.about-copy,
.pastor-text,
.about-section-head .muted{
  text-align:justify;
  text-wrap:pretty;
}

/* responsive */
@media (max-width: 1100px){
  .about-premium-hero{
    grid-template-columns:1fr;
  }

  .about-premium-title{
    max-width:100%;
  }

  .about-premium-photo-card{
    min-height:360px;
  }
}

@media (max-width: 768px){
  .about-premium-copy{
    padding:24px 20px;
    border-radius:24px;
  }

  .about-premium-title{
    font-size:clamp(2rem, 7vw, 3.2rem);
    line-height:1.05;
    letter-spacing:-1px;
  }

  .about-premium-lead{
    font-size:1rem;
    line-height:1.78;
  }

  .about-premium-photo-card,
  .about-hero-slider{
    border-radius:24px;
  }

  .about-premium-photo-card{
    min-height:300px;
  }

  .about-slide{
    grid-template-columns:1fr;
  }

  .about-slide-media{
    height:180px;
  }
}

@media (max-width: 640px){
  .about-premium-copy{
    padding:22px 16px;
  }

  .about-premium-title{
    font-size:2.2rem;
    line-height:1.08;
    max-width:100%;
  }

  .about-premium-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .about-premium-actions .btn{
    width:100%;
  }

  .about-premium-photo-card{
    min-height:240px;
  }

  .about-premium-visual-top{
    top:14px;
    left:14px;
    right:14px;
  }

  .about-premium-floating-card{
    left:14px;
    right:14px;
    bottom:14px;
  }

  .about-hero-slider{
    padding:14px;
  }

  .about-slide-media{
    height:160px;
  }
}

/* =========================
   HERO SLIDER MEJORADO
   ========================= */

.about-hero-slider{
  padding:22px;
  min-height:210px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.about-hero-slider-head{
  margin-bottom:16px;
}

.about-slider-kicker{
  display:block;
  margin-bottom:6px;
  color:var(--muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.about-hero-slider-head h3{
  margin:0;
  font-size:1.2rem;
}

.about-slider-window{
  position:relative;
  overflow:hidden;
}

.about-slider-track{
  position:relative;
  min-height:160px;
}

.about-slide{
  display:none;
  grid-template-columns:160px 1fr;
  gap:18px;
  align-items:center;
}

.about-slide.is-active{
  display:grid;
}

.about-slide-media{
  width:100%;
  height:140px;
  border-radius:18px;
  overflow:hidden;
}

.about-slide-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.about-slide-body strong{
  display:block;
  margin-bottom:8px;
  font-size:1.05rem;
}

.about-slide-body p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  text-align:justify;
}

.about-slider-dots{
  display:flex;
  gap:8px;
  justify-content:flex-end;
  margin-top:16px;
}

.about-dot{
  width:10px;
  height:10px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,0.18);
  cursor:pointer;
  transition:all .2s ease;
}

.about-dot.is-active{
  width:30px;
  background:var(--teal);
}

@media (max-width: 980px){
  .nav-toggle{
    display:inline-flex;
  }

  .nav{
    display:none;
    position:absolute;
    top:calc(100% + 10px);
    right:24px;
    left:24px;
    flex-direction:column;
    gap:8px;
    padding:14px;
    border-radius:22px;
    background:rgba(10,12,16,0.98);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 20px 45px rgba(0,0,0,0.35);
    backdrop-filter:blur(10px);
    z-index:60;
  }

  .nav.is-open{
    display:flex;
  }
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
  margin-top:80px;
  padding-top:60px;

  border-top:1px solid rgba(255,255,255,0.08);

  background:
  radial-gradient(600px 200px at 50% 0%, rgba(45,166,170,0.08), transparent),
  #050b12;
}

.footer-container{
  max-width:1200px;
  margin:auto;

  padding:0 24px 40px;

  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;

  margin-bottom:16px;
}

.footer-logo img{
  width:44px;
  height:44px;
  border-radius:50%;
}

.footer-logo span{
  display:block;
  font-size:12px;
  color:var(--muted);
}

.footer-text{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:18px;
}

.footer-col h4{
  margin-bottom:16px;
  font-size:15px;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col li{
  margin-bottom:10px;
}

.footer-col a{
  color:var(--muted);
  text-decoration:none;
  transition:.2s;
}

.footer-col a:hover{
  color:var(--teal);
}

.footer-info{
  color:var(--muted);
  line-height:1.7;
}

.footer-social{
  display:flex;
  gap:12px;
}

.footer-social a{
  width:36px;
  height:36px;

  border-radius:12px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(255,255,255,0.1);

  transition:.2s;
}

.footer-social a:hover{
  border-color:var(--teal);
  background:rgba(45,166,170,0.1);
}

.footer-social svg{
  width:18px;
  height:18px;
  stroke:var(--text);
  fill:none;
  stroke-width:2;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:18px;

  text-align:center;
  font-size:13px;

  color:var(--muted);
}

@media (max-width:900px){

.footer-container{
grid-template-columns:1fr 1fr;
gap:30px;
}

}

@media (max-width:600px){

.footer-container{
grid-template-columns:1fr;
}

}