/* RESET BASICO */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* GENERAL */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f8f9fb;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.site-header {
  background: #000;
  border-bottom: 1px solid #202020;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 4px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.65vw, 26px);
  font-variant: small-caps;
  letter-spacing: 1.5px;
  line-height: 1.05;
  text-shadow: 0 0 1px rgba(255, 255, 255, .45);
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
  margin-left: auto;
}

/* MENU */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #d7d7d7;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 28px;
  border-left: 1px solid #1f2b4a;
}

.social-links a {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  opacity: .75;
  transform: translateY(-1px);
}

.social-links svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* HERO VIDEO */
.hero-video {
  min-height: calc(100vh - 96px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #050505;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .48) 42%, rgba(0, 0, 0, .18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .08) 46%, rgba(0, 0, 0, .35) 100%);
}

.hero-content {
  width: min(90%, 1100px);
  margin: 0 auto;
  padding: 90px 0;
}

.hero-kicker {
  margin-bottom: 12px;
  color: #f2cf63;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 94px);
  font-weight: 500;
  line-height: .95;
  text-shadow: 0 6px 26px rgba(0, 0, 0, .55);
}

.hero-content p:not(.hero-kicker) {
  max-width: 560px;
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  color: rgba(255, 255, 255, .92);
}

/* BOTON */
.btn-primary {
  margin-top: 20px;
  padding: 12px 20px;
  background: #ffcc00;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.btn-primary:hover {
  background: #f0b800;
}

.hero-btn {
  min-width: 150px;
  padding: 14px 24px;
  color: #111;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .35);
}

/* EVENTO ESPECIAL */
.special-event {
  padding: 72px 0;
  background: #fff;
}

.special-event[hidden] {
  display: none;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p {
  margin-bottom: 6px;
  color: #8a6a18;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.special-event-list {
  display: grid;
  gap: 22px;
}

.special-event-card {
  display: grid;
  grid-template-columns: minmax(220px, 38%) 1fr;
  overflow: hidden;
  background: #0b0b0b;
  color: #fff;
  border: 1px solid #e6e0d4;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .12);
}

.special-event-media {
  min-height: 280px;
  background: #151515;
}

.special-event-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.special-event-body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(28px, 5vw, 54px);
}

.special-event-date {
  margin-bottom: 12px;
  color: #f2cf63;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.special-event-body h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.05;
}

.special-event-body p {
  max-width: 620px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

/* HORARIOS DE SERVICIOS */
.service-times {
  min-height: 750px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 0 92px;
  color: #fff;
  background: #050b10;
}

.service-times-bg {
  position: absolute;
  inset: 0;
  background-image: url("../../public/images/mapamundi_silueta_web.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(1);
  opacity: .28;
  z-index: -3;
}

.service-times-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 36%, rgba(13, 70, 105, .5), rgba(0, 0, 0, .12) 34%, rgba(0, 0, 0, .72) 78%),
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(6, 23, 33, .68) 48%, rgba(0, 0, 0, .92)),
    rgba(0, 0, 0, .58);
}

.service-times::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(3, 12, 18, .42));
}

.service-times-content {
  text-align: center;
}

.service-kicker {
  margin-bottom: 22px;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.service-times h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5.8vw, 78px);
  font-weight: 300;
  line-height: 1;
}

.service-subtitle {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(19px, 2vw, 24px);
}

.service-cards {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 84px auto 0;
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.service-card-top {
  min-height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 26px 20px 30px;
  background: #09385d;
}

.service-card-top svg {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  fill: #fff;
}

.service-card-top h3 {
  font-size: clamp(27px, 2.6vw, 32px);
  font-weight: 300;
  line-height: 1.1;
}

.service-card-bottom {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 24px 20px;
  background: rgba(43, 51, 57, .78);
  backdrop-filter: blur(5px);
  text-align: center;
}

.service-card-bottom p {
  font-size: 24px;
  font-weight: 400;
}

.service-card-bottom span {
  max-width: 280px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.35;
}

/* NOSOTROS / PASTORES */
.about-pastors {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #fff;
  background: #0b3a60;
}

.about-pastors::before,
.about-pastors::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.about-pastors::before {
  right: -140px;
  top: -230px;
}

.about-pastors::after {
  left: -240px;
  bottom: -260px;
}

.about-pastors-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.about-copy h2 {
  max-width: 650px;
  margin-bottom: 36px;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 300;
  line-height: 1.08;
}

.about-copy p {
  max-width: 840px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.58;
}

.pastors-photo {
  justify-self: center;
  width: min(100%, 360px);
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
}

.pastors-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* NUEVO CREYENTE */
.new-believer {
  padding: 86px 0 96px;
  background: #fff;
  color: #071a2d;
}

.new-believer-heading {
  max-width: 650px;
  margin: 0 auto 58px;
  text-align: center;
}

.new-believer-heading p:first-child {
  margin-bottom: 12px;
  color: #07385d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.new-believer-heading h2 {
  margin-bottom: 12px;
  color: #0b0b0b;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
}

.new-believer-heading p:last-child {
  max-width: 520px;
  margin: 0 auto;
  color: #102b44;
  font-size: 15px;
  line-height: 1.7;
}

.new-believer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(420px, 1fr);
  gap: 38px;
  align-items: stretch;
}

.new-believer-photo {
  min-height: 650px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .2);
}

.new-believer-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.new-believer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 22px;
}

.believer-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  background: #fff;
  border: 1px solid #edf0f3;
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(4, 22, 38, .12);
}

.believer-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: #fff;
  background: #07385d;
  border-radius: 10px;
}

.believer-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.believer-card h3 {
  margin-bottom: 22px;
  color: #0b0b0b;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.believer-card p {
  color: #0d2238;
  font-size: 13px;
  line-height: 1.65;
}

/* CULTO DE JOVENES */
.youth-service {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 42px 0 0;
  color: #fff;
  background: #0d63df;
}

.youth-service-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../../public/images/jovenes-culto.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(.15);
}

.youth-service-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, .14) 0 160px, transparent 162px),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, .16) 0 160px, transparent 162px),
    linear-gradient(110deg, rgba(18, 57, 153, .9) 0%, rgba(38, 91, 222, .86) 52%, rgba(0, 188, 212, .75) 100%);
}

.youth-service-content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.youth-service h2 {
  margin-bottom: 38px;
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 300;
  line-height: 1;
}

.youth-time-card {
  width: min(100%, 630px);
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 42px 36px 44px;
  background: rgba(104, 156, 235, .58);
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(0, 44, 120, .24);
  backdrop-filter: blur(2px);
}

.youth-time-card svg {
  width: 82px;
  height: 82px;
  fill: #fff;
}

.youth-time-card p {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
}

.youth-cta {
  min-width: min(100%, 386px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 40px;
  padding: 14px 28px;
  color: #07385d;
  background: #fff;
  border-radius: 999px 999px 0 0;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 -6px 28px rgba(0, 41, 100, .18);
}

.youth-cta:hover,
.youth-cta:focus-visible {
  color: #0d63df;
}

/* VIDEOS RECIENTES */
.recent-videos {
  padding: 82px 0 96px;
  background: #fff;
  color: #0b0b0b;
}

.recent-videos-heading {
  max-width: 900px;
  margin: 0 auto 86px;
  text-align: center;
}

.recent-videos-heading p:first-child {
  margin-bottom: 22px;
  color: #07385d;
  font-size: 19px;
  letter-spacing: 1.8px;
}

.recent-videos-heading h2 {
  margin-bottom: 28px;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 300;
  line-height: 1;
}

.recent-videos-heading p:last-child {
  color: #475569;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
}

.videos-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 42px;
}

.videos-subheading svg {
  width: 42px;
  height: 42px;
  fill: #07385d;
}

.videos-subheading h3 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  line-height: 1;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.video-card {
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .14);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
}

.video-card h4 {
  padding: 24px 24px 26px;
  color: #111;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

/* CONTACTO Y PETICIONES */
.contact-prayer {
  padding: 78px 0 92px;
  background: #f4f6f8;
  color: #0b0b0b;
}

.contact-heading {
  max-width: 900px;
  margin: 0 auto 62px;
  text-align: center;
}

.contact-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 300;
  line-height: 1.05;
}

.contact-heading p {
  color: #415066;
  font-size: 17px;
}

.contact-layout {
  width: min(100%, 960px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 0 auto;
  align-items: start;
}

.contact-left {
  display: grid;
  gap: 28px;
}

.contact-info-card,
.contact-form-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .12);
}

.contact-info-card {
  padding: 28px 30px;
}

.contact-info-card h3,
.giving-card h3,
.contact-form-card h3 {
  margin-bottom: 28px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #07385d;
  background: #e8eef4;
  border-radius: 12px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-row p {
  margin-bottom: 4px;
  font-size: 15px;
}

.contact-row span {
  color: #27384f;
  font-size: 13px;
}

.giving-card {
  padding: 28px 20px 20px;
  color: #fff;
  background: #07385d;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(7, 56, 93, .28);
}

.giving-card > p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  line-height: 1.6;
}

.giving-method {
  padding: 18px 18px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
}

.giving-method:last-child {
  margin-bottom: 0;
}

.giving-method.active {
  background: rgba(255, 255, 255, .16);
}

.giving-method h4 {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
}

.giving-method p {
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  line-height: 1.5;
}

.contact-form-card {
  padding: 28px 20px 20px;
}

.contact-form-card .form-group {
  margin-bottom: 20px;
}

.contact-form-card label {
  font-size: 13px;
  font-weight: 500;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cfd7e3;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font: inherit;
}

.contact-form-card textarea {
  min-height: 140px;
}

.whatsapp-prayer-link {
  width: fit-content;
  display: inline-flex;
  margin-top: 10px;
  color: #0f7a3f;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.whatsapp-prayer-link:hover,
.whatsapp-prayer-link:focus-visible {
  text-decoration: underline;
}

.whatsapp-prayer-link.is-hidden {
  display: none;
}

.contact-submit {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  color: #fff;
  background: #1d5cff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #174de0;
}

.contact-submit svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-status {
  min-height: 20px;
  margin-top: 12px;
  color: #166534;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

/* ADMIN */
.admin-page {
  min-height: 100vh;
  background: #f5f1e8;
}

.admin-main {
  padding: 54px 0 80px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 28px;
  align-items: start;
}

.admin-panel,
.admin-preview {
  background: #fff;
  border: 1px solid #e2dacb;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.admin-panel {
  padding: 26px;
}

.admin-panel h1,
.admin-preview h2 {
  margin-bottom: 18px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfc5b5;
  border-radius: 5px;
  font: inherit;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn-secondary {
  margin-top: 20px;
  padding: 12px 20px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.btn-secondary:hover {
  background: #2a2a2a;
}

.admin-note {
  margin-top: 18px;
  color: #5d584f;
  font-size: 14px;
}

.admin-status {
  min-height: 22px;
  margin-top: 14px;
  color: #166534;
  font-weight: 700;
}

.admin-preview {
  padding: 26px;
}

.admin-preview .special-event-card {
  grid-template-columns: 1fr;
}

.admin-preview .special-event-media {
  min-height: 260px;
}

.empty-preview {
  padding: 40px;
  color: #60584b;
  background: #fbf8f1;
  border: 1px dashed #cfc5b5;
  border-radius: 8px;
}

/* SECCIONES */
.section {
  padding: 60px 0;
}

/* FOOTER */
.site-footer {
  background: #111b2a;
  color: #fff;
  padding: 42px 0 38px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, .6fr) minmax(180px, .7fr);
  gap: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 650px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links,
.footer-hours {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h3,
.footer-hours h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.footer-links a,
.footer-hours p {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  padding-top: 28px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

/* BOTON MENU MOVIL */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid #2b2b2b;
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: #fff;
}

/* RESPONSIVE */
@media (max-width: 1020px) {
  .header-inner {
    min-height: 82px;
  }

  .hero-video {
    min-height: calc(100vh - 82px);
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .header-menu {
    gap: 24px;
  }

  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 16px;
  }

  .service-times {
    min-height: auto;
    padding: 90px 0 78px;
  }

  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 62px;
  }

  .service-card-top {
    min-height: 138px;
  }

  .about-pastors {
    padding: 96px 0;
  }

  .about-pastors-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 46px;
  }

  .new-believer-grid {
    grid-template-columns: 1fr;
  }

  .new-believer-photo {
    min-height: 520px;
  }

  .recent-videos {
    padding: 72px 0 84px;
  }

  .recent-videos-heading {
    margin-bottom: 64px;
  }

  .youth-service {
    min-height: 470px;
  }

  .youth-time-card {
    width: min(100%, 560px);
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .contact-layout {
    width: min(100%, 820px);
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 76px;
    padding: 10px 16px;
    position: relative;
  }

  .hero-video {
    min-height: calc(100vh - 76px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .52) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .18) 100%);
  }

  .hero-content {
    padding: 72px 0;
  }

  .special-event {
    padding: 52px 0;
  }

  .special-event-card {
    grid-template-columns: 1fr;
  }

  .special-event-media {
    min-height: 240px;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .service-times {
    padding: 72px 0 60px;
  }

  .service-kicker {
    font-size: 15px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 44px;
  }

  .service-card {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }

  .about-pastors {
    padding: 72px 0;
  }

  .about-pastors-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-copy h2 {
    margin-bottom: 24px;
  }

  .about-copy p {
    font-size: 18px;
  }

  .pastors-photo {
    width: min(100%, 330px);
  }

  .new-believer {
    padding: 64px 0 72px;
  }

  .new-believer-heading {
    margin-bottom: 38px;
  }

  .new-believer-photo {
    min-height: 420px;
  }

  .new-believer-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .believer-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .youth-service {
    min-height: 420px;
    padding-top: 46px;
  }

  .youth-service h2 {
    margin-bottom: 28px;
  }

  .youth-time-card {
    gap: 20px;
    padding: 30px 22px 32px;
    border-radius: 22px;
  }

  .youth-time-card svg {
    width: 58px;
    height: 58px;
  }

  .youth-cta {
    min-width: min(100%, 320px);
    min-height: 54px;
    margin-top: 34px;
    font-size: 18px;
  }

  .recent-videos {
    padding: 58px 0 66px;
  }

  .recent-videos-heading {
    margin-bottom: 44px;
  }

  .recent-videos-heading p:first-child {
    font-size: 14px;
  }

  .videos-subheading {
    gap: 10px;
    margin-bottom: 28px;
  }

  .videos-subheading svg {
    width: 32px;
    height: 32px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .video-card h4 {
    padding: 18px 18px 20px;
    font-size: 19px;
  }

  .contact-prayer {
    padding: 58px 0 68px;
  }

  .contact-heading {
    margin-bottom: 38px;
  }

  .contact-heading p {
    font-size: 15px;
  }

  .contact-info-card,
  .contact-form-card,
  .giving-card {
    padding: 24px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo {
    align-items: flex-start;
  }

  .brand {
    gap: 12px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    padding: 18px 16px 20px;
    background: #000;
    border-top: 1px solid #202020;
  }

  .header-menu.active {
    display: grid;
    gap: 18px;
  }

  .nav {
    display: grid;
    gap: 16px;
    text-align: center;
  }

  .nav a {
    font-size: 17px;
  }

  .social-links {
    justify-content: center;
    padding-left: 0;
    padding-top: 16px;
    border-left: none;
    border-top: 1px solid #1f2b4a;
  }
}

@media (max-width: 420px) {
  .brand-text {
    max-width: 210px;
    font-size: 14px;
  }
}
