/* Página Voluntariado — rediseño cinematográfico
   Este CSS solo se encola en /voluntarios/. */

:root {
  --ft-vol-red: #e31c24;
  --ft-vol-navy: #21264a;
  --ft-vol-teal: #14b8ba;
  --ft-vol-teal-dark: #0e989a;
  --ft-vol-sky: #dff7f8;
  --ft-vol-sky-mid: #b8ecee;
}

.ft-subnav--involve {
  background: transparent;
  border-bottom: none;
  margin-top: -0.25rem;
}

.ft-subnav--involve .ft-subnav-inner {
  padding: 0.65rem 0 1.1rem;
  gap: 0.45rem;
}

.ft-subnav--involve .ft-subnav-link {
  padding: 0.45rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ft-vol-navy);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(33, 38, 74, 0.08);
  box-shadow: 0 4px 14px rgba(33, 38, 74, 0.05);
}

.ft-subnav--involve .ft-subnav-link.is-active,
.ft-subnav--involve .ft-subnav-link:hover {
  background: var(--ft-vol-teal);
  border-color: var(--ft-vol-teal);
  color: #fff;
}

/* Reveal */
[data-ft-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--ft-reveal-delay, 0ms);
}

[data-ft-reveal].is-inview {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-ft-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ——— Hero ——— */
.ft-vol-hero {
  position: relative;
  min-height: clamp(520px, 78vh, 720px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ft-vol-navy);
}

.ft-vol-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ft-vol-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.06);
  transition: transform 10s ease-out;
}

.ft-vol-hero.is-ready .ft-vol-hero-bg img {
  transform: scale(1);
}

.ft-vol-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      100deg,
      rgba(25, 29, 63, 0.92) 0%,
      rgba(33, 38, 74, 0.78) 34%,
      rgba(33, 38, 74, 0.28) 62%,
      rgba(33, 38, 74, 0.12) 100%
    );
}

.ft-vol-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  padding: clamp(5.5rem, 12vh, 7.5rem) 0 clamp(5.5rem, 10vh, 7rem);
  color: #fff;
}

.ft-vol-hero-text {
  max-width: 38rem;
}

.ft-vol-hero-script {
  margin: 0 0 0.7rem;
  font-family: var(--ft-font-script);
  font-size: clamp(1.75rem, 3.6vw, 2.45rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ft-vol-teal);
  text-shadow: 0 2px 18px rgba(18, 38, 72, 0.35);
}

.ft-vol-hero-headline {
  margin: 0 0 1rem;
  font-family: var(--ft-font);
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 22px rgba(18, 38, 72, 0.45);
  max-width: 14ch;
}

.ft-vol-hero-desc {
  margin: 0 0 1.75rem;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
}

.ft-vol-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.ft-vol-hero-cta-primary {
  background: var(--ft-vol-teal);
  border: 2px solid var(--ft-vol-teal);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(20, 184, 186, 0.35);
}

.ft-vol-hero-cta-primary:hover {
  background: var(--ft-vol-teal-dark);
  border-color: var(--ft-vol-teal-dark);
  color: #fff;
  transform: translateY(-2px);
}

.ft-vol-hero-cta-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  font-weight: 700;
  gap: 0.55rem;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.ft-vol-hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

.ft-vol-hero-play {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.65rem;
}

/* ——— Stats flotantes ——— */
.ft-vol-stats-bar {
  position: relative;
  z-index: 4;
  margin-top: -3.25rem;
  margin-bottom: 0.25rem;
  padding: 0;
  background: transparent;
  border: none;
}

.ft-vol-stats-card {
  background: #fff;
  border-radius: 1.35rem;
  padding: 1.35rem 1.25rem;
  box-shadow:
    0 18px 48px rgba(33, 38, 74, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  border: 1px solid rgba(33, 38, 74, 0.06);
}

.ft-vol-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1rem;
}

.ft-vol-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ft-vol-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.45rem;
  border-radius: 50%;
  background: var(--ft-vol-sky);
  color: var(--ft-vol-teal);
}

.ft-vol-stat-icon .ft-icon {
  font-size: 1.1rem;
}

.ft-vol-stat-number {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ft-vol-navy);
  letter-spacing: -0.02em;
}

.ft-vol-stat-label {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--ft-text-soft);
  max-width: 12rem;
}

@media (min-width: 768px) {
  .ft-vol-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .ft-vol-stats-card {
    padding: 1.6rem 1.75rem;
  }

  .ft-vol-stats-bar {
    margin-top: -3.75rem;
  }
}

/* ——— Why ——— */
.ft-vol-why {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: #f3f6f8;
}

.ft-vol-why-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.ft-vol-why-copy {
  max-width: 18rem;
}

.ft-vol-why-title {
  margin: 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1.05;
}

.ft-vol-why-title-script {
  font-family: var(--ft-font-script);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 700;
  color: var(--ft-vol-teal);
}

.ft-vol-why-title-bold {
  position: relative;
  display: inline-block;
  padding-bottom: 0.55rem;
  font-family: var(--ft-font);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ft-vol-navy);
}

.ft-vol-why-title-bold::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.5rem;
  height: 5px;
  border-radius: 999px;
  background: #f0c419;
}

.ft-vol-why-intro {
  margin: 0;
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.65;
  color: var(--ft-vol-navy);
  opacity: 0.88;
}

.ft-vol-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.15rem;
  align-items: stretch;
}

.ft-vol-why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  padding: 2.35rem 1.15rem 1.45rem;
  background: #fff;
  border-radius: 1.15rem;
  box-shadow: 0 10px 28px rgba(33, 38, 74, 0.08);
  border: none;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.ft-vol-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(33, 38, 74, 0.12);
}

.ft-vol-why-card-icon {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ft-vol-teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(20, 184, 186, 0.3);
  transform: translate(-50%, -50%);
}

.ft-vol-why-card-icon .ft-icon {
  font-size: 1.2rem;
}

.ft-vol-why-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.ft-vol-why-card-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ft-vol-navy);
}

.ft-vol-why-card-body > p {
  margin: 0 0 1.1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ft-text-soft);
}

.ft-vol-why-list {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  text-align: left;
}

.ft-vol-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ft-vol-navy);
}

.ft-vol-why-check {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--ft-vol-teal);
  color: #fff;
  font-size: 0.58rem;
}

@media (min-width: 768px) {
  .ft-vol-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .ft-vol-why-layout {
    grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 2.15fr);
    gap: 2.75rem;
    align-items: center;
  }

  .ft-vol-why-copy {
    max-width: 17rem;
  }

  .ft-vol-why-card {
    padding: 2.45rem 1.05rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .ft-vol-why-copy {
    max-width: none;
    text-align: center;
  }

  .ft-vol-why-title {
    align-items: center;
  }

  .ft-vol-why-title-bold::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
  }
  .is-inview .ft-vol-why-title-bold::after,
  .is-visible .ft-vol-why-title-bold::after {
    transform: translateX(-50%) scaleX(1);
  }
}

/* ——— Choose Kairos ——— */
.ft-vol-choose {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #f3f6f8;
  overflow: visible;
}

.ft-vol-choose-banner {
  position: relative;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 1.5rem 1.85rem;
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at 88% 42%, rgba(255, 255, 255, 0.08) 0%, transparent 42%),
    linear-gradient(115deg, #1a3d4a 0%, #21485a 45%, #1c3f4d 100%);
  color: #fff;
  box-shadow: 0 22px 48px rgba(33, 38, 74, 0.18);
  overflow: visible;
}

.ft-vol-choose-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.25) 0 1.2px, transparent 1.8px);
  background-size: 48px 48px, 72px 72px;
}

.ft-vol-choose-media {
  position: relative;
  z-index: 2;
  width: min(14rem, 58%);
  margin: -2.25rem auto 0.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.ft-vol-choose-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.ft-vol-choose-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.ft-vol-choose-title {
  margin: 0 0 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  text-align: center;
  line-height: 1.05;
}

.ft-vol-choose-title-script {
  font-family: var(--ft-font-script);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  color: #fff;
}

.ft-vol-choose-title-bold {
  font-family: var(--ft-font);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.ft-vol-choose-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 0.85rem;
}

.ft-vol-choose-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.35rem;
  text-align: center;
}

.ft-vol-choose-icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: #fff;
  font-size: 1.35rem;
  background: none;
  border-radius: 0;
}

.ft-vol-choose-icon .ft-icon {
  font-size: 1.35rem;
}

.ft-vol-choose-item-text {
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 900px) {
  .ft-vol-choose-banner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.25rem 1.75rem;
    padding: 1.35rem 2rem 1.35rem 0.35rem;
    min-height: 15.5rem;
    align-items: center;
  }

  .ft-vol-choose-media {
    width: 15.5rem;
    margin: -1.75rem 0 -1.75rem -1.1rem;
    align-self: center;
  }

  .ft-vol-choose-title {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 1.15rem;
  }

  .ft-vol-choose-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .ft-vol-choose-item {
    padding: 0 0.85rem;
    position: relative;
  }

  .ft-vol-choose-item + .ft-vol-choose-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
  }

  .ft-vol-choose-item-text {
    font-size: 0.8rem;
  }
}

@media (min-width: 1100px) {
  .ft-vol-choose-media {
    width: 17rem;
    margin-left: -1.35rem;
  }

  .ft-vol-choose-title-script {
    font-size: 2.25rem;
  }

  .ft-vol-choose-title-bold {
    font-size: 2.5rem;
  }
}

/* ——— Áreas ——— */
.ft-vol-areas {
  padding: clamp(3rem, 7vw, 4.75rem) 0;
  background: #fff;
}

.ft-vol-areas-head {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.ft-vol-areas-kicker {
  margin: 0 0 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ft-vol-teal);
}

.ft-vol-areas-kicker .ft-heart {
  color: var(--ft-vol-red);
}

.ft-vol-areas-title {
  margin-bottom: 0.75rem;
  color: var(--ft-vol-navy);
  font-weight: 800;
}

.ft-vol-areas-title .ft-text-accent {
  color: var(--ft-vol-teal);
}

.ft-vol-areas-intro {
  margin: 0;
  color: var(--ft-text-soft);
  line-height: 1.65;
}

.ft-vol-areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.ft-vol-area-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.35rem 1.3rem 1.25rem;
  background: #f7fbfc;
  border-radius: 1.15rem;
  border: 1px solid rgba(33, 38, 74, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.ft-vol-area-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 18px 40px rgba(33, 38, 74, 0.1);
}

.ft-vol-area-card-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ft-vol-teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(20, 184, 186, 0.28);
}

.ft-vol-area-card-icon .ft-icon {
  font-size: 1.15rem;
}

.ft-vol-area-card-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ft-vol-navy);
}

.ft-vol-area-card-body > p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ft-text-soft);
}

.ft-vol-area-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(33, 38, 74, 0.08);
}

.ft-vol-area-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
}

.ft-vol-area-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ft-text-soft);
}

.ft-vol-area-stat .ft-icon {
  color: var(--ft-vol-teal);
  font-size: 0.85rem;
}

.ft-vol-area-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--ft-vol-teal);
  text-decoration: none;
}

.ft-vol-area-more:hover {
  color: var(--ft-vol-teal-dark);
  gap: 0.5rem;
}

.ft-vol-areas-cta {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.35rem 1.4rem;
  border-radius: 1.5rem;
  background: var(--ft-vol-navy);
  color: #fff;
  box-shadow: 0 16px 40px rgba(33, 38, 74, 0.16);
}

.ft-vol-areas-cta-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.ft-vol-areas-cta-media {
  position: relative;
  flex: 0 0 auto;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  overflow: visible;
}

.ft-vol-areas-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  display: block;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.ft-vol-areas-cta-badge {
  position: absolute;
  right: -0.15rem;
  bottom: -0.1rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ft-vol-red);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  font-size: 0.7rem;
}

.ft-vol-areas-cta-copy {
  min-width: 0;
}

.ft-vol-areas-cta-copy h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}

.ft-vol-areas-cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ft-vol-areas-cta-btn {
  justify-content: center;
  align-self: stretch;
  border-radius: 999px;
  background: var(--ft-vol-teal);
  border: 2px solid var(--ft-vol-teal);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 1.35rem;
  box-shadow: 0 10px 24px rgba(20, 184, 186, 0.28);
}

.ft-vol-areas-cta-btn:hover {
  background: var(--ft-vol-teal-dark);
  border-color: var(--ft-vol-teal-dark);
  color: #fff;
  transform: translateY(-2px);
}

.ft-vol-areas-cta-btn .ft-icon,
.ft-vol-areas-cta-btn .ft-heart {
  color: #fff;
}

@media (min-width: 700px) {
  .ft-vol-areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ft-vol-areas-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ft-vol-areas-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
    padding: 1.35rem 1.75rem 1.35rem 1.35rem;
  }

  .ft-vol-areas-cta-main {
    gap: 1.25rem;
    flex: 1;
  }

  .ft-vol-areas-cta-media {
    width: 5.75rem;
    height: 5.75rem;
  }

  .ft-vol-areas-cta-btn {
    align-self: center;
    flex: 0 0 auto;
    max-width: 22rem;
    padding: 1rem 1.5rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
}

/* ——— Formulario ——— */
.ft-vol-signup {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5rem) 0;
  overflow: hidden;
  background: var(--ft-vol-navy);
}

.ft-vol-signup-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.ft-vol-signup-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-vol-signup-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(25, 29, 63, 0.92), rgba(33, 38, 74, 0.88));
}

.ft-vol-signup .ft-container {
  position: relative;
  z-index: 1;
}

.ft-vol-signup-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.ft-vol-signup-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.ft-vol-signup-title .ft-text-accent {
  color: var(--ft-vol-teal);
}

.ft-vol-signup-title .ft-heart {
  color: var(--ft-vol-red);
}

.ft-vol-signup-intro {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 28rem;
}

.ft-vol-signup-steps {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.ft-vol-signup-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ft-vol-signup-step-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ft-vol-teal);
  color: #fff;
}

.ft-vol-signup-step-copy h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.ft-vol-signup-step-copy p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.ft-vol-signup-privacy {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  color: rgba(255, 255, 255, 0.78);
}

.ft-vol-signup-privacy-icon {
  color: var(--ft-vol-teal);
}

.ft-vol-signup-privacy-title {
  margin: 0 0 0.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.ft-vol-signup-privacy-text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.ft-vol-signup-panel {
  background: #fff;
  border-radius: 1.35rem;
  padding: 1.5rem 1.35rem 1.45rem;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.ft-vol-signup-form-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ft-vol-signup-form-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ft-vol-sky);
  color: var(--ft-vol-teal);
}

.ft-vol-signup-form-head h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ft-vol-navy);
}

.ft-vol-signup-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.ft-vol-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ft-vol-navy);
}

.ft-vol-field--full {
  grid-column: 1 / -1;
}

.ft-vol-field input,
.ft-vol-field select,
.ft-vol-field textarea {
  width: 100%;
  border: 1.5px solid rgba(33, 38, 74, 0.12);
  border-radius: 0.75rem;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ft-text);
  background: #f8fbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ft-vol-field input:focus,
.ft-vol-field select:focus,
.ft-vol-field textarea:focus {
  outline: none;
  border-color: var(--ft-vol-teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(20, 184, 186, 0.18);
}

.ft-vol-char-count {
  align-self: flex-end;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ft-text-soft);
}

.ft-vol-signup-notice {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 1rem 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--ft-text-soft);
}

.ft-vol-signup-notice-icon {
  color: var(--ft-vol-teal);
  flex-shrink: 0;
}

.ft-vol-signup-submit {
  width: 100%;
  justify-content: center;
  background: var(--ft-vol-teal);
  border-color: var(--ft-vol-teal);
  color: #fff;
  font-weight: 800;
}

.ft-vol-signup-submit:hover {
  background: var(--ft-vol-teal-dark);
  border-color: var(--ft-vol-teal-dark);
  color: #fff;
}

.ft-vol-signup-thanks {
  margin: 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--ft-text-soft);
  text-align: center;
}

.ft-vol-signup-thanks .ft-heart {
  color: var(--ft-vol-red);
}

.ft-vol-signup .ft-form-message {
  margin-top: 0.85rem;
}

@media (min-width: 900px) {
  .ft-vol-signup-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.75rem;
    align-items: center;
  }

  .ft-vol-signup-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ft-vol-signup-panel {
    padding: 1.85rem 1.75rem 1.65rem;
  }
}

/* ——— Join CTA polaroid ——— */
.ft-vol-join {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5rem) 0;
  background: #1b2144;
  overflow: hidden;
  color: #fff;
}

.ft-vol-join-splash {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(28vw, 220px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.ft-vol-join-splash--left {
  left: 0;
  background:
    radial-gradient(ellipse 90% 55% at 0% 18%, rgba(20, 184, 186, 0.85) 0%, transparent 70%),
    radial-gradient(ellipse 70% 40% at 8% 72%, rgba(40, 190, 193, 0.55) 0%, transparent 68%),
    radial-gradient(circle at 12% 48%, rgba(90, 220, 222, 0.45) 0 18%, transparent 42%);
  filter: blur(0.5px);
}

.ft-vol-join-splash--right {
  right: 0;
  background:
    radial-gradient(ellipse 95% 60% at 100% 28%, rgba(20, 184, 186, 0.8) 0%, transparent 72%),
    radial-gradient(ellipse 65% 45% at 92% 78%, rgba(40, 190, 193, 0.5) 0%, transparent 70%),
    radial-gradient(circle at 88% 55%, rgba(90, 220, 222, 0.4) 0 16%, transparent 40%);
}

.ft-vol-join-hands {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 62% 42%, rgba(180, 220, 255, 0.9) 0 1.2%, transparent 1.8%),
    radial-gradient(circle at 74% 58%, rgba(180, 220, 255, 0.7) 0 1%, transparent 1.6%),
    radial-gradient(circle at 68% 70%, rgba(180, 220, 255, 0.55) 0 0.9%, transparent 1.5%);
  background-size: 100% 100%;
}

.ft-vol-join-hands::before,
.ft-vol-join-hands::after {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  border-radius: 40% 55% 45% 60%;
  background: rgba(160, 200, 230, 0.35);
  filter: blur(1px);
  opacity: 0.35;
}

.ft-vol-join-hands::before {
  right: 18%;
  top: 22%;
  transform: rotate(-18deg);
}

.ft-vol-join-hands::after {
  right: 8%;
  bottom: 18%;
  width: 7rem;
  height: 7rem;
  transform: rotate(22deg);
  opacity: 0.28;
}

.ft-vol-join .ft-container {
  position: relative;
  z-index: 1;
}

.ft-vol-join-layout {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.ft-vol-join-title {
  margin: 0 0 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.ft-vol-join-title-before {
  position: relative;
  display: inline-block;
  color: #fff;
  padding-bottom: 0.35rem;
}

.ft-vol-join-title-before::after {
  content: "";
  position: absolute;
  left: 0.15rem;
  bottom: 0;
  width: 2.35rem;
  height: 4px;
  border-radius: 999px;
  background: #f0c419;
}

.ft-vol-join-title-accent {
  color: var(--ft-vol-teal);
}

.ft-vol-join-text {
  margin: 0 0 1.5rem;
  max-width: 26rem;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.ft-vol-join-btn {
  position: relative;
  display: inline-flex;
  border-radius: 999px;
  background: var(--ft-vol-red);
  border: 2px solid var(--ft-vol-red);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.95rem 1.55rem;
  box-shadow: 0 12px 28px rgba(227, 28, 36, 0.32);
}

.ft-vol-join-btn:hover {
  background: #c41820;
  border-color: #c41820;
  color: #fff;
  transform: translateY(-2px);
}

.ft-vol-join-btn .ft-heart,
.ft-vol-join-btn .ft-icon {
  color: #fff;
}

.ft-vol-join-spark {
  position: absolute;
  right: -1.1rem;
  top: 50%;
  width: 0.9rem;
  height: 0.9rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.ft-vol-join-spark::before,
.ft-vol-join-spark::after,
.ft-vol-join-spark {
  background: transparent;
}

.ft-vol-join-spark::before,
.ft-vol-join-spark::after {
  content: "";
  position: absolute;
  background: #f0c419;
  border-radius: 999px;
}

.ft-vol-join-spark::before {
  width: 3px;
  height: 14px;
  left: 6px;
  top: -2px;
  transform: rotate(28deg);
  box-shadow: 8px 2px 0 #f0c419;
}

.ft-vol-join-spark::after {
  width: 12px;
  height: 3px;
  left: 2px;
  top: 5px;
  transform: rotate(28deg);
}

.ft-vol-join-polaroids {
  position: relative;
  min-height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ft-vol-polaroid {
  --ft-tilt-x: 0deg;
  --ft-tilt-y: 0deg;
  position: absolute;
  width: min(42vw, 170px);
  margin: 0;
  padding: 0.7rem 0.7rem 1.45rem;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform:
    rotate(var(--ft-polaroid-rot, 0deg))
    translateY(var(--ft-polaroid-y, 0))
    perspective(600px)
    rotateX(var(--ft-tilt-x))
    rotateY(var(--ft-tilt-y));
}

.ft-vol-polaroid-pin {
  position: absolute;
  top: 0.35rem;
  left: 50%;
  z-index: 2;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #7fd8da;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 2px 6px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
}

.ft-vol-polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0.1rem;
}

.ft-vol-polaroid--1 {
  --ft-polaroid-rot: -10deg;
  --ft-polaroid-y: 10px;
  left: 4%;
  z-index: 1;
}

.ft-vol-polaroid--2 {
  --ft-polaroid-rot: 0deg;
  --ft-polaroid-y: -6px;
  left: 50%;
  transform:
    translateX(-50%)
    rotate(var(--ft-polaroid-rot))
    translateY(var(--ft-polaroid-y))
    perspective(600px)
    rotateX(var(--ft-tilt-x))
    rotateY(var(--ft-tilt-y));
  z-index: 3;
}

.ft-vol-polaroid--3 {
  --ft-polaroid-rot: 11deg;
  --ft-polaroid-y: 14px;
  right: 4%;
  left: auto;
  z-index: 2;
}

.ft-vol-polaroid:hover {
  z-index: 5;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

@media (min-width: 900px) {
  .ft-vol-join-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
    gap: 1.5rem 2rem;
  }

  .ft-vol-join-polaroids {
    min-height: 360px;
  }

  .ft-vol-polaroid {
    width: 195px;
  }
}

@media (min-width: 1100px) {
  .ft-vol-polaroid {
    width: 210px;
  }

  .ft-vol-join-polaroids {
    min-height: 380px;
  }
}

/* Contact band: transición limpia desde CTA navy */
.ft-contact-band {
  margin-top: 0;
}

.ft-contact-band.ft-contact-band--after-navy {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

/* Mobile hero */
@media (max-width: 767px) {
  .ft-vol-hero {
    min-height: auto;
  }

  .ft-vol-hero-content {
    padding: 4.75rem 0 4.5rem;
  }

  .ft-vol-hero-headline {
    max-width: none;
  }

  .ft-vol-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ft-vol-hero-actions .ft-btn {
    width: 100%;
    justify-content: center;
  }

  .ft-vol-stats-bar {
    margin-top: -2.25rem;
    padding: 0 0.15rem;
  }

  .ft-vol-join-polaroids {
    min-height: 250px;
  }

  .ft-vol-polaroid {
    width: min(36vw, 138px);
  }

  .ft-vol-join-btn {
    width: 100%;
    justify-content: center;
  }
}
