/* Sections — layout específico por sección */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 6vh);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* Luz suave hacia abajo + oscurecido lateral para el texto */
  background:
    linear-gradient(
      to top,
      rgba(255, 248, 230, 0.2) 0%,
      rgba(255, 248, 230, 0.07) 32%,
      transparent 58%
    ),
    linear-gradient(
      105deg,
      rgba(30, 42, 31, 0.86) 0%,
      rgba(30, 42, 31, 0.58) 45%,
      rgba(30, 42, 31, 0.28) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  padding-block: var(--space-xl);
  color: var(--color-cream);
}

.hero__copy {
  display: contents;
}

.hero__cta {
  display: contents;
}

.hero__eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--radius-full);
}

.hero h1 {
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: var(--text-lg);
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: var(--space-lg);
  max-width: 34rem;
}

.hero__microcopy {
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  opacity: 0.88;
  letter-spacing: 0.01em;
}

.hero__microcopy strong {
  color: var(--color-gold);
}

/* ── Problem section ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-base);
}

.problem-list li::before {
  content: "";
  width: 2.65rem;
  height: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.28rem;
  background: url("../images/camino-arrow.svg?v=20260720f") center / contain no-repeat;
}

.problem-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 22%;
  width: 100%;
  max-height: 36rem;
}

/* ── Solution intro ── */
.solution-intro {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.solution-intro h2 {
  margin-bottom: var(--space-md);
}

.solution-intro p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

.solution-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.solution-photo img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  object-position: center 35%;
}

.solution-photo figcaption {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-text-muted);
  background: var(--color-white);
  text-align: center;
}

.lead-form__status {
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
}

.lead-form__status--success {
  background: rgba(92, 107, 82, 0.15);
  color: var(--color-sage);
}

.lead-form__status--error {
  background: rgba(184, 92, 56, 0.12);
  color: var(--color-terracotta-dark);
}

.lead-form__status--loading {
  background: var(--color-cream-dark);
  color: var(--color-text-muted);
}

/* ── Imagen pendiente (asset no recibido) ── */
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    -45deg,
    var(--color-cream-dark),
    var(--color-cream-dark) 10px,
    var(--color-white) 10px,
    var(--color-white) 20px
  );
  border: 2px dashed rgba(30, 42, 31, 0.22);
  color: var(--color-text-muted);
  text-align: center;
}

.image-placeholder__label {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  padding: var(--space-md);
  background: rgba(249, 246, 240, 0.92);
  border-radius: var(--radius-sm);
}

.image-placeholder--problem,
.problem-image.image-placeholder {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 14rem;
}

.image-placeholder--coaching,
.coaching-alt__image.image-placeholder {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
  width: 100%;
  min-height: 12rem;
}

.testimonial-card__photo.image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 10rem;
}

/* ── Testimonial photos ── */
.testimonial-card--with-photo {
  padding: 0;
  overflow: hidden;
  gap: 0;
}

.testimonial-card__photo {
  display: block;
  margin: 0;
  width: 100%;
  flex: 0 0 20rem;
  height: 20rem;
  object-fit: cover;
  object-position: center 18%;
  background: none;
  align-self: stretch;
}

.testimonial-card__photo--danny {
  object-position: center 70%;
}

.testimonial-card__photo--marike {
  object-position: center 22%;
}

.testimonial-card__photo--cari,
.testimonial-card__photo--laura {
  object-position: center 12%;
}

.testimonial-card__photo--erik {
  object-position: center 24%;
}

.testimonial-card__photo--jacquelyn {
  object-position: center 16%;
}

.testimonial-card__photo--nuno {
  object-fit: cover;
  object-position: center top;
}

.testimonial-card--with-photo .testimonial-card__quote,
.testimonial-card--with-photo .testimonial-card__author {
  padding-inline: var(--space-md);
  flex-shrink: 0;
}

.testimonial-card--with-photo .testimonial-card__quote {
  padding-top: var(--space-xs);
}

.testimonial-card--with-photo .testimonial-card__author {
  padding-bottom: var(--space-md);
  margin-top: 0;
}


@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero__subtitle {
    font-size: var(--text-base);
  }
}
