  :root {
    --navy: #14304f;          /* pulled from the ICV logo */
    --navy-deep: #0b1e34;
    --navy-ink: #0e2338;
    --gold: #f2a33c;
    --gold-bright: #ffb84d;
    --white: #ffffff;
    --off: #f4f6f9;
    --muted: #5b6b7d;
    --font: "Archivo", sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font);
    color: var(--navy-ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
  }

  /* ============ NAV ============ */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(14,35,56,.08), 0 6px 24px rgba(14,35,56,.06);
  }
  .nav {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .nav-logo img {
    height: 52px;
    width: auto;
    display: block;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--navy-ink);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 0;
    position: relative;
    transition: color .2s;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
  }
  .nav-links a:hover { color: var(--navy); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    background: var(--gold);
    color: var(--navy-deep) !important;
    padding: 12px 22px !important;
    border-radius: 6px;
    font-weight: 800 !important;
  }
  .nav-cta::after { display: none; }
  .nav-cta:hover { background: var(--gold-bright); }

  /* hamburger */
  .burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
  }
  .burger span {
    display: block;
    width: 30px; height: 3px;
    background: var(--navy-ink);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
  }
  .burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 90px;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(11,30,52,.82) 0%, rgba(20,48,79,.72) 45%, rgba(11,30,52,.88) 100%),
      url("hero.jpg") center 38% / cover no-repeat;
  }
  /* subtle grain for depth */
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    max-width: 1000px;
    z-index: 1;
  }
  .hero-eyebrow {
    color: #dbe6f2;
    font-size: clamp(13px, 1.6vw, 19px);
    font-weight: 500;
    letter-spacing: .34em;
    text-transform: uppercase;
    margin-bottom: 22px;
    animation: rise .8s ease .1s both;
  }
  .hero h1 {
    font-size: clamp(46px, 8.6vw, 108px);
    font-weight: 900;
    font-stretch: 115%;
    line-height: .98;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: var(--white);
    animation: rise .8s ease .25s both;
  }
  .hero h1 .accent {
    color: var(--gold);
    position: relative;
    display: inline-block;
    white-space: nowrap;
  }
  .hero h1 .accent svg {
    position: absolute;
    left: 0;
    bottom: -.32em;
    width: 100%;
    height: .38em;
    overflow: visible;
  }
  .hero h1 .accent svg path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 7;
    stroke-linecap: round;
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: draw 1.1s ease .9s forwards;
  }
  .hero-sub {
    margin-top: 44px;
    color: var(--white);
    font-size: clamp(24px, 3.6vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .04em;
    animation: rise .8s ease .45s both;
  }
  .hero-actions {
    margin-top: 44px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    animation: rise .8s ease .6s both;
  }
  .btn {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .1em;
    padding: 19px 40px;
    border-radius: 8px;
    transition: transform .2s ease, background .2s, box-shadow .2s, color .2s;
  }
  .btn-solid {
    background: var(--gold);
    color: var(--navy-deep);
    box-shadow: 0 10px 30px rgba(242,163,60,.35);
  }
  .btn-solid:hover { background: var(--gold-bright); transform: translateY(-3px); }
  .btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
  }
  .btn-outline:hover { background: rgba(242,163,60,.14); transform: translateY(-3px); }

  .hero-dots {
    position: absolute;
    bottom: 34px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1;
  }
  .hero-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
  }
  .hero-dots span.on { background: var(--gold); }

  @keyframes rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes draw { to { stroke-dashoffset: 0; } }

  /* ============ SECTIONS ============ */
  section { padding: 100px 28px; }
  .wrap { max-width: 1240px; margin: 0 auto; }
  .kicker {
    color: var(--gold);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  h2 {
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 900;
    font-stretch: 110%;
    text-transform: uppercase;
    line-height: 1.02;
    color: var(--navy-ink);
  }

  /* welcome */
  .welcome .wrap {
    max-width: 820px;
  }
  .welcome p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 56ch;
  }
  .welcome .verse {
    margin-top: 30px;
    padding: 26px 30px;
    border-left: 5px solid var(--gold);
    background: var(--off);
    border-radius: 0 10px 10px 0;
    font-size: 17px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
  }
  .welcome .verse strong {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .family-q {
    margin-top: 44px;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    font-stretch: 110%;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.15;
  }
  .pastors {
    margin-top: 34px;
    display: inline-block;
    padding: 22px 30px;
    border: 2px solid var(--navy);
    border-radius: 12px;
  }
  .pastors-label {
    color: var(--gold);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .26em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .pastors-names {
    font-size: 21px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
  }

  /* horarios */
  .times {
    background: var(--navy-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .times::before {
    content: "";
    position: absolute;
    top: -220px; right: -220px;
    width: 560px; height: 560px;
    border: 90px solid rgba(242,163,60,.09);
    border-radius: 50%;
  }
  .times h2 { color: var(--white); }
  .times-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .time-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 40px 34px;
    transition: transform .25s ease, border-color .25s, background .25s;
  }
  .time-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: rgba(255,255,255,.08);
  }
  .time-card .day {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: 14px;
  }
  .time-card .hour {
    font-size: 44px;
    font-weight: 900;
    font-stretch: 110%;
    margin: 14px 0 10px;
  }
  .time-card .name {
    font-size: 17px;
    color: #c3d0de;
    line-height: 1.5;
  }

  /* ministerios */
  .ministries { background: var(--off); }
  .kids-card {
    margin-top: 56px;
    background: var(--navy-deep);
    color: var(--white);
    border-radius: 16px;
    padding: 46px 44px;
    box-shadow: 0 20px 50px rgba(14,35,56,.2);
  }
  .kids-head {
    display: flex;
    gap: 26px;
    align-items: flex-start;
  }
  .kids-head .icon {
    flex-shrink: 0;
    width: 58px; height: 58px;
    border-radius: 12px;
    background: var(--gold);
    display: grid;
    place-items: center;
    font-size: 26px;
  }
  .kids-head h3 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 12px;
  }
  .kids-head p {
    color: #c3d0de;
    font-size: 16px;
    line-height: 1.7;
    max-width: 72ch;
  }
  .kids-groups {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .group {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform .25s ease, border-color .25s;
  }
  .group:hover { transform: translateY(-5px); border-color: var(--gold); }
  .g-age {
    color: var(--gold);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
  }
  .g-name {
    font-weight: 800;
    font-size: 19px;
    line-height: 1.25;
  }
  .ministries-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .min-card {
    background: var(--white);
    border-radius: 14px;
    padding: 38px 30px;
    box-shadow: 0 4px 18px rgba(14,35,56,.06);
    transition: transform .25s ease, box-shadow .25s;
  }
  .min-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(14,35,56,.14);
  }
  .min-card .icon {
    width: 58px; height: 58px;
    border-radius: 12px;
    background: var(--navy);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 22px;
  }
  .min-card h3 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 10px;
  }
  .min-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }

  /* visítanos */
  .visit {
    background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 70%, #1d436e 100%);
    color: var(--white);
  }
  .visit h2 { color: var(--white); }
  .visit p {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
    color: #d5e0ec;
    max-width: 52ch;
  }
  .visit .btn { margin-top: 34px; }
  .visit-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
  }
  .info-list { margin-top: 30px; }
  .info-row {
    margin-top: 14px !important;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .info-row a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 2px solid rgba(242,163,60,.55);
    transition: color .2s, border-color .2s;
  }
  .info-row a:hover { color: var(--gold); border-color: var(--gold); }
  .temp-note {
    margin-top: 28px;
    padding: 18px 22px;
    background: rgba(242,163,60,.12);
    border: 1px solid rgba(242,163,60,.45);
    border-left: 5px solid var(--gold);
    border-radius: 10px;
    color: #ffe3b8;
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 52ch;
  }
  .temp-note strong { color: var(--gold-bright); }
  .visit-map iframe {
    width: 100%;
    height: 460px;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(0,0,0,.35);
    display: block;
  }

  /* footer */
  footer {
    background: var(--navy-ink);
    color: #9fb1c4;
    padding: 70px 28px 40px;
  }
  .foot {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
  }
  .foot img {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: .95;
    margin-bottom: 20px;
  }
  .foot h4 {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 13px;
    margin-bottom: 18px;
  }
  .foot a {
    color: #9fb1c4;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color .2s;
  }
  .foot a:hover { color: var(--gold); }
  .foot p { font-size: 15px; line-height: 1.7; }
  .affiliation {
    max-width: 1240px;
    margin: 56px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
  }
  .affiliation img {
    height: 44px;
    width: auto;
    opacity: .8;
    margin-bottom: 18px;
  }
  .aff-verse {
    font-style: italic;
    font-size: 14.5px;
    color: #8fa3b8;
    max-width: 62ch;
    margin: 0 auto 8px;
    line-height: 1.6;
  }
  .aff-text {
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #6d8199;
  }
  .copyright {
    max-width: 1240px;
    margin: 36px auto 0;
    font-size: 13px;
    letter-spacing: .06em;
    text-align: center;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 960px) {
    .visit-grid { grid-template-columns: 1fr; gap: 44px; }
    .visit-map iframe { height: 340px; }
    .times-grid { grid-template-columns: 1fr; }
    .ministries-grid { grid-template-columns: 1fr 1fr; }
    .kids-groups { grid-template-columns: 1fr 1fr; }
    .foot { grid-template-columns: 1fr; gap: 36px; }
  }
  @media (max-width: 820px) {
    .burger { display: flex; }
    .nav-links {
      position: fixed;
      top: 84px; left: 0; right: 0;
      background: var(--white);
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 10px 28px 26px;
      box-shadow: 0 20px 40px rgba(14,35,56,.15);
      transform: translateY(-130%);
      transition: transform .3s ease;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 14px 0; font-size: 15px; }
    .nav-cta { margin-top: 12px; text-align: center; }
  }
  @media (max-width: 560px) {
    .ministries-grid { grid-template-columns: 1fr; }
    .kids-groups { grid-template-columns: 1fr; }
    .kids-head { flex-direction: column; }
    .kids-card { padding: 34px 26px; }
    section { padding: 76px 22px; }
  }
  /* ============ SUBPÁGINAS ============ */
  .page-hero {
    background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 65%, #1d436e 100%);
    color: var(--white);
    padding: 168px 28px 78px;
  }
  .page-hero .wrap { max-width: 1240px; margin: 0 auto; }
  .page-hero h1 {
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 900;
    font-stretch: 112%;
    text-transform: uppercase;
    line-height: 1;
  }
  .page-hero .lead {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
    color: #d5e0ec;
    max-width: 62ch;
  }
  .page-hero .page-verse {
    margin-top: 26px;
    font-style: italic;
    color: #ffd9a1;
    font-size: 16px;
    max-width: 60ch;
    line-height: 1.6;
  }
  .page-hero .page-verse strong {
    display: block;
    font-style: normal;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-top: 8px;
  }
  .back-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .back-link:hover { color: var(--gold-bright); }

  /* ============ VIDEOS / PRÉDICAS ============ */
  .video-grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .video-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(14,35,56,.08);
    transition: transform .25s ease, box-shadow .25s;
    text-decoration: none;
    color: var(--navy-ink);
    display: block;
  }
  .video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(14,35,56,.16);
  }
  .video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(130deg, var(--navy-deep), var(--navy));
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  .video-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .video-thumb .ph-logo {
    height: 54px;
    opacity: .5;
    filter: brightness(0) invert(1);
  }
  .video-thumb .play {
    position: absolute;
    width: 62px; height: 62px;
    border-radius: 50%;
    background: rgba(242,163,60,.95);
    display: grid;
    place-items: center;
    transition: transform .2s;
  }
  .video-card:hover .play { transform: scale(1.12); }
  .video-thumb .play::after {
    content: "";
    border-style: solid;
    border-width: 11px 0 11px 19px;
    border-color: transparent transparent transparent var(--navy-deep);
    margin-left: 5px;
  }
  .video-body { padding: 20px 22px 24px; }
  .video-title { font-weight: 800; font-size: 17px; line-height: 1.35; }
  .video-meta {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13.5px;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 600;
  }

  /* series de estudios */
  .serie {
    margin-top: 46px;
    background: var(--white);
    border-radius: 16px;
    padding: 42px 40px;
    box-shadow: 0 4px 18px rgba(14,35,56,.07);
  }
  .serie-tag {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
  }
  .serie h3 {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
  }
  .serie > p { margin-top: 10px; color: var(--muted); line-height: 1.65; max-width: 70ch; }
  .serie .video-grid { margin-top: 30px; }

  .yt-banner {
    margin-top: 60px;
    background: var(--navy-deep);
    border-radius: 16px;
    padding: 44px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    color: var(--white);
  }
  .yt-banner h3 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
  }
  .yt-banner p { margin-top: 8px; color: #c3d0de; }

  /* clases (página de niños) */
  .class-card {
    margin-top: 34px;
    background: var(--white);
    border-radius: 16px;
    padding: 38px 36px;
    box-shadow: 0 4px 18px rgba(14,35,56,.07);
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    align-items: start;
  }
  .class-age {
    background: var(--navy);
    color: var(--gold);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.2;
  }
  .class-age small {
    display: block;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #c3d0de;
    margin-top: 6px;
    font-weight: 700;
  }
  .class-card h3 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
  }
  .class-card p { margin-top: 10px; color: var(--muted); line-height: 1.7; }

  @media (max-width: 960px) {
    .video-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 620px) {
    .video-grid { grid-template-columns: 1fr; }
    .serie { padding: 30px 24px; }
    .class-card { grid-template-columns: 1fr; }
    .class-age { max-width: 160px; }
  }

  /* enlaces "conocer más" en tarjetas */
  a.min-card { text-decoration: none; color: var(--navy-ink); }
  .card-more {
    display: inline-block;
    margin-top: 16px;
    color: var(--gold);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  a.min-card:hover .card-more { color: var(--navy); }
  .card-more-dark {
    margin-top: 28px;
    text-decoration: none;
  }
  .card-more-dark:hover { color: var(--gold-bright); }

  /* ============ PALETA FINAL: AZUL MARINO, BLANCO Y GRIS ============ */
  :root {
    --gold: #9fb3c8;          /* gris azulado (reemplaza el dorado) */
    --gold-bright: #c9d6e4;
    --slate: #64809e;
    --silver: #c9d6e4;
  }
  .kicker { color: var(--slate); }
  .times .kicker, .visit .kicker, .page-hero .kicker, .prayer-dark .kicker { color: var(--silver); }
  .hero h1 .accent { color: var(--silver); }
  .hero h1 .accent svg path { stroke: var(--silver); }
  .hero-dots span.on { background: var(--white); }
  .btn-solid {
    background: var(--white);
    color: var(--navy-deep);
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
  }
  .btn-solid:hover { background: var(--silver); }
  .btn-outline { border-color: rgba(255,255,255,.7); color: var(--white); }
  .btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
  .nav-links a::after { background: var(--navy); }
  .nav-cta { background: var(--navy); color: #fff !important; }
  .nav-cta:hover { background: #1d436e; }
  .verse { border-left-color: var(--navy); }
  .verse strong { color: var(--slate); }
  .pastors-label { color: var(--slate); }
  .time-card .day { color: var(--silver); }
  .time-card:hover { border-color: rgba(255,255,255,.55); }
  .times::before { border-color: rgba(255,255,255,.05); }
  .group:hover { border-color: rgba(255,255,255,.55); }
  .g-age { color: var(--silver); }
  .kids-head .icon { background: rgba(255,255,255,.12); }
  .card-more { color: var(--slate); }
  a.min-card:hover .card-more { color: var(--navy); }
  .card-more-dark { color: var(--silver); }
  .card-more-dark:hover { color: #fff; }
  .info-row a { border-bottom-color: rgba(255,255,255,.45); }
  .info-row a:hover { color: var(--silver); border-color: #fff; }
  .temp-note {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(201,214,228,.35);
    border-left: 5px solid var(--silver);
    color: #d5e0ec;
  }
  .temp-note strong { color: #fff; }
  .foot a:hover { color: var(--silver); }
  .page-hero .page-verse { color: var(--silver); }
  .page-hero .page-verse strong { color: #fff; }
  .back-link { color: var(--silver); }
  .back-link:hover { color: #fff; }
  .serie-tag { color: var(--silver); }
  .video-thumb .play { background: rgba(255,255,255,.95); }
  .class-age { color: var(--silver); }

  /* ============ EVENTOS ============ */
  .events { background: var(--white); }
  .events-list { margin-top: 46px; display: grid; gap: 22px; }
  .event-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: var(--off);
    border-radius: 14px;
    padding: 32px 34px;
    transition: transform .25s ease, box-shadow .25s;
  }
  .event-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(14,35,56,.12); }
  .event-date {
    flex-shrink: 0;
    width: 88px;
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    text-align: center;
    padding: 16px 8px 14px;
  }
  .e-day { display: block; font-size: 30px; font-weight: 900; line-height: 1; }
  .e-month {
    display: block;
    font-size: 11.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 6px;
    font-weight: 700;
  }
  .event-card h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; }
  .event-card .e-desc { margin-top: 8px; color: var(--muted); line-height: 1.65; }
  .event-card .e-meta {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--slate);
  }

  /* ============ ORACIÓN / MENSAJES ============ */
  .prayer { background: var(--white); }
  .prayer-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: start;
  }
  .prayer-form {
    background: var(--off);
    border-radius: 16px;
    padding: 40px 38px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .prayer-form label {
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--navy);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .prayer-form input,
  .prayer-form textarea {
    font-family: var(--font);
    font-size: 16px;
    padding: 14px 16px;
    border: 2px solid #d7dfe8;
    border-radius: 10px;
    background: var(--white);
    color: var(--navy-ink);
    resize: vertical;
  }
  .prayer-form input:focus,
  .prayer-form textarea:focus { outline: none; border-color: var(--navy); }
  .prayer-form button {
    border: 0;
    cursor: pointer;
    font-family: var(--font);
    background: var(--navy);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .1em;
    padding: 18px 40px;
    border-radius: 8px;
    transition: background .2s, transform .2s;
  }
  .prayer-form button:hover { background: #1d436e; transform: translateY(-2px); }
  .form-note { font-size: 13.5px; color: var(--muted); text-align: center; }
  @media (max-width: 960px) {
    .prayer-grid { grid-template-columns: 1fr; gap: 44px; }
    .event-card { flex-direction: column; gap: 18px; }
  }

  /* ============ TARJETAS DE MINISTERIO UNIFORMES ============ */
  .ministries-grid-5 {
    margin-top: 56px;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .ministries-grid-5 .min-card {
    display: flex;
    flex-direction: column;
    padding: 34px 26px;
  }
  .ministries-grid-5 .min-card p { flex-grow: 1; }
  .ministries-grid-5 .min-card h3 { font-size: 19px; }
  @media (max-width: 1100px) {
    .ministries-grid-5 { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 760px) {
    .ministries-grid-5 { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 500px) {
    .ministries-grid-5 { grid-template-columns: 1fr; }
  }

  /* botón azul marino para secciones claras */
  .btn-navy {
    margin-top: 34px;
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 10px 26px rgba(14,35,56,.22);
  }
  .btn-navy:hover { background: #1d436e; }

  /* ============ TARJETAS DE MINISTERIO — AZUL MARINO ============ */
  .ministries-grid-5 .min-card {
    background: var(--navy-deep);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.1);
    padding: 0 0 30px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(14,35,56,.16);
  }
  .ministries-grid-5 .min-card:hover {
    box-shadow: 0 22px 48px rgba(14,35,56,.32);
    border-color: rgba(201,214,228,.5);
  }
  .ministries-grid-5 .min-card h3 { color: var(--white); }
  .ministries-grid-5 .min-card p { color: #b9c8d8; padding: 0 26px; }
  .ministries-grid-5 .min-card h3 { padding: 0 26px; margin-bottom: 10px; }
  .ministries-grid-5 .card-more { color: var(--silver); padding: 0 26px; }
  .ministries-grid-5 .min-card:hover .card-more { color: var(--white); }

  /* banda del logo — un poco menos de la mitad de la tarjeta */
  .min-logo {
    width: 100%;
    aspect-ratio: 10 / 7;
    background: rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.1);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    overflow: hidden;
  }
  .min-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    display: block;
  }
  .min-logo .icon-fallback {
    display: none;
    font-size: 40px;
    line-height: 1;
  }
  /* si el logo aún no existe, se muestra el ícono de respaldo */
  .min-logo .icon-fallback:only-child { display: block; }
