/* ============================================================
   ESENCIA ANCESTRAL — Estilos compartidos
   Paleta: tierra / verde selva / dorado / crema
   ============================================================ */

:root {
  --tierra: #a8532f;
  --tierra-dark: #7c3d22;
  --verde: #33472f;
  --verde-light: #4a6144;
  --dorado: #c69a4b;
  --crema: #f6efe3;
  --crema-dark: #ece1cc;
  --texto: #2b2420;
  --texto-suave: #5c5245;
  --blanco: #fffdf9;

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--texto);
  background: var(--crema);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--verde);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tierra);
  font-weight: 600;
  margin-bottom: 0.8em;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--tight { padding: 56px 0; }

.section--verde {
  background: var(--verde);
  color: var(--crema);
}
.section--verde h2, .section--verde h3 { color: var(--crema); }
.section--verde p { color: #dfe4da; }

.section--crema-dark {
  background: var(--crema-dark);
}

.text-center { text-align: center; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 239, 227, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(43, 36, 32, 0.08);
}

.nav__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--verde);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}

.nav__logo span { color: var(--tierra); }

.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav__links a {
  color: var(--texto);
  opacity: 0.85;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav__links a:hover { opacity: 1; color: var(--tierra); }

.nav__cta {
  background: var(--tierra);
  color: var(--blanco) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  opacity: 1 !important;
}
.nav__cta:hover { background: var(--tierra-dark); }

.nav__toggle-input {
  display: none;
}

.nav__toggle {
  display: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--tierra);
  cursor: pointer;
  user-select: none;
}

/* ---------- Nav dropdown (categorías) ---------- */

.nav__dropdown {
  position: relative;
}

.nav__dropdown > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--texto);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav__dropdown > summary::-webkit-details-marker { display: none; }

.nav__dropdown > summary::after {
  content: "▾";
  font-size: 0.65em;
  margin-left: 1px;
}

.nav__dropdown > summary:hover,
.nav__dropdown[open] > summary {
  opacity: 1;
  color: var(--tierra);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--blanco);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(43, 36, 32, 0.16);
  padding: 10px;
  display: grid;
  min-width: 230px;
  z-index: 80;
}

.nav__dropdown-menu a {
  padding: 10px 14px;
  border-radius: 8px;
  opacity: 1 !important;
  color: var(--texto);
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav__dropdown-menu a:hover {
  background: var(--crema-dark);
  color: var(--tierra);
}

@media (max-width: 1100px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--crema);
    padding: 8px 24px 24px;
    box-shadow: 0 16px 30px rgba(43, 36, 32, 0.14);
    border-bottom: 1px solid rgba(43, 36, 32, 0.08);
  }
  .nav__toggle-input:checked ~ .nav__links {
    display: flex;
  }
  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(43, 36, 32, 0.08);
    width: 100%;
  }
  .nav__cta {
    margin-top: 14px;
    text-align: center;
  }
  .nav__toggle {
    display: block;
  }
  .nav__dropdown > summary {
    padding: 14px 0;
    border-bottom: 1px solid rgba(43, 36, 32, 0.08);
  }
  .nav__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    padding: 4px 0 4px 16px;
    min-width: 0;
    background: transparent;
  }
  .nav__dropdown-menu a {
    border-bottom: none;
    padding: 10px 0;
  }
}

/* ---------- Hero ---------- */

.hero {
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(198,154,75,0.16), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(168,83,47,0.14), transparent 50%),
    var(--crema);
  text-align: center;
}

.hero__subtitle {
  max-width: 640px;
  margin: 0 auto 2.2em;
  font-size: 1.15rem;
  color: var(--texto-suave);
}

/* ---------- Hero con imagen de fondo (modificador) ---------- */

.hero--bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--verde);
}

.hero--bg .eyebrow {
  color: var(--dorado);
}

.hero--bg h1 {
  color: var(--crema);
}

.hero--bg .hero__subtitle {
  color: rgba(250, 247, 242, 0.92);
}

/* ---------- Video de fondo (hero y tarjetas destacadas) ---------- */

.hero--video {
  position: relative;
  overflow: hidden;
  background-color: var(--verde);
}

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

.hero--video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,36,32,0.6), rgba(43,36,32,0.72));
  z-index: 1;
  pointer-events: none;
}

.hero--video .container {
  position: relative;
  z-index: 2;
}

.hero--video .eyebrow {
  color: var(--dorado);
}

.hero--video h1 {
  color: var(--crema);
}

.hero--video .hero__subtitle {
  color: rgba(250, 247, 242, 0.92);
}

.card--featured .card__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--tierra);
  color: var(--blanco);
  box-shadow: 0 10px 24px rgba(168, 83, 47, 0.28);
}
.btn--primary:hover { background: var(--tierra-dark); }

.btn--outline {
  border-color: var(--verde);
  color: var(--verde);
}
.btn--outline:hover { background: var(--verde); color: var(--crema); }

/* Sobre fondos oscuros (hero con foto/video), el outline necesita ser claro para verse */
.hero--bg .btn--outline,
.hero--video .btn--outline,
.section--photo .btn--outline {
  border-color: var(--crema);
  color: var(--crema);
}
.hero--bg .btn--outline:hover,
.hero--video .btn--outline:hover,
.section--photo .btn--outline:hover {
  background: var(--crema);
  color: var(--verde);
}

.btn--light {
  background: var(--crema);
  color: var(--verde);
}
.btn--light:hover { background: var(--blanco); }

/* ---------- Cards / grid de ofertas ---------- */

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.card {
  background: var(--blanco);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(43, 36, 32, 0.06);
  border-top: 4px solid var(--dorado);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(43, 36, 32, 0.12);
}

.card__tag {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tierra);
  font-weight: 700;
}

.card__img-frame {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: -8px -4px 4px;
}

.card__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Tarjetas destacadas (home) ---------- */

.grid-cards--featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.card--featured {
  position: relative;
  padding: 0;
  gap: 0;
  border-top-width: 6px;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: var(--verde);
  overflow: hidden;
}

.card--featured--top {
  align-items: flex-start;
}

.card--featured--center {
  align-items: center;
}

.card--featured--top-left,
.card--featured--bottom-left {
  justify-content: flex-start;
}

.card--featured--top-left {
  align-items: flex-start;
}

.card--featured--bottom-left {
  align-items: flex-end;
}

.card--featured--top-left .card__body,
.card--featured--bottom-left .card__body {
  text-align: left;
}

.card--featured--top-left .card__tag,
.card--featured--top-left h3,
.card--featured--top-left .card__link,
.card--featured--bottom-left .card__tag,
.card--featured--bottom-left h3,
.card--featured--bottom-left .card__link {
  margin-left: 0;
  margin-right: auto;
}

.card--featured--bottom-full .card__body {
  max-width: none;
  width: 100%;
}

.card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.45);
  z-index: 1;
}

.card--featured .card__body {
  position: relative;
  z-index: 2;
  padding: 28px 28px 32px;
  max-width: 460px;
}

.card--featured .card__body > * + * {
  margin-top: 10px;
}

.card--featured .card__tag,
.card--featured h3,
.card--featured .card__meta {
  color: rgba(250, 247, 242, 0.95);
}

.card--featured .card__meta {
  line-height: 1.7;
}

.card--featured .card__link {
  color: var(--dorado);
}

.card__badge {
  display: inline-block;
  background: var(--dorado);
  color: var(--blanco);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 4px;
  width: fit-content;
}

.card--featured h3 {
  font-size: 1.7rem;
}

.card--featured .card__price {
  font-size: 1.9rem;
}

/* ---------- Instagram embed ---------- */

.instagram-embed {
  max-width: 900px;
  margin: 32px auto 0;
  min-height: 80px;
}

.card__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--verde);
  font-weight: 700;
  margin-top: auto;
}

.card__meta {
  font-size: 0.9rem;
  color: var(--texto-suave);
}

.card__link {
  margin-top: 8px;
  font-weight: 600;
  color: var(--tierra);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Photo placeholder ---------- */

.photo-placeholder {
  border: 2px dashed rgba(51, 71, 47, 0.35);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.5);
  color: var(--texto-suave);
  font-size: 0.88rem;
  text-align: center;
  padding: 48px 20px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Listas con icono ---------- */

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list li::before {
  content: "✦";
  color: var(--dorado);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Tabla ---------- */

table.pricing {
  width: 100%;
  border-collapse: collapse;
  background: var(--blanco);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(43, 36, 32, 0.06);
}

table.pricing th, table.pricing td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--crema-dark);
}

table.pricing th {
  background: var(--verde);
  color: var(--crema);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid rgba(43, 36, 32, 0.1);
  padding: 22px 0;
}

.faq-item h4 {
  margin-bottom: 8px;
  color: var(--tierra);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--tierra);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--dorado);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  margin-top: 12px;
  color: var(--texto-suave);
}

/* ---------- Info strip (fechas/duración/precio) ---------- */

.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  background: var(--blanco);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(43, 36, 32, 0.06);
  margin: 40px 0;
}

.info-strip__item {
  text-align: center;
}

.info-strip__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--texto-suave);
  margin-bottom: 6px;
}

.info-strip__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--verde);
}

/* ---------- Nota / aviso ---------- */

.note {
  background: rgba(198, 154, 75, 0.14);
  border-left: 4px solid var(--dorado);
  padding: 18px 22px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--texto-suave);
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
  font-size: 0.85rem;
  color: var(--texto-suave);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--tierra); font-weight: 600; }

.hero--bg .breadcrumb,
.hero--video .breadcrumb,
.section--photo .breadcrumb {
  color: rgba(250, 247, 242, 0.75);
}
.hero--bg .breadcrumb a,
.hero--video .breadcrumb a,
.section--photo .breadcrumb a {
  color: var(--crema);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--verde);
  color: var(--crema-dark);
  padding: 56px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 36px;
}

.footer h4 {
  color: var(--dorado);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer a {
  color: var(--crema-dark);
  opacity: 0.85;
}
.footer a:hover { opacity: 1; color: var(--dorado); }

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer__bottom {
  border-top: 1px solid rgba(246, 239, 227, 0.15);
  padding-top: 20px;
  font-size: 0.82rem;
  opacity: 0.7;
  text-align: center;
}

/* ---------- WhatsApp flotante ---------- */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  background: #25d366;
  color: #fff !important;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  font-size: 1.6rem;
}

/* ---------- Utilidades ---------- */

.mt-0 { margin-top: 0; }
.max-w-prose { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---------- Imagen real (marco) ---------- */

.img-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43, 36, 32, 0.1);
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Chips (temas de FAQ) ---------- */

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.chip {
  background: var(--blanco);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--texto-suave);
  border: 1px solid rgba(51, 71, 47, 0.15);
}

/* ---------- Split media (texto + imagen) ---------- */

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 780px) {
  .split-media { grid-template-columns: 1fr; }
}

/* ---------- Galería de fotos ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.gallery-grid__item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 24px rgba(43, 36, 32, 0.08);
}

.gallery-grid__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 18px 12px 8px;
  background: linear-gradient(180deg, rgba(43, 36, 32, 0) 0%, rgba(43, 36, 32, 0.75) 100%);
  color: var(--blanco);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.gallery-grid__item img,
.gallery-grid__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.gallery-grid__item:hover img {
  transform: scale(1.05);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 32px;
  text-align: left;
}

.testimonial-grid__item video {
  width: 100%;
  max-height: 70vh;
  aspect-ratio: 9 / 16;
  background: var(--verde-light);
  object-fit: contain;
  display: block;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(43, 36, 32, 0.18);
}

.testimonial-grid__item p {
  font-weight: 600;
  color: var(--verde);
  margin-top: 12px;
  text-align: center;
}

/* ---------- Carrusel interactivo (scroll horizontal + swipe, sin JS) ---------- */

.qv-carousel {
  position: relative;
  margin-top: 40px;
}

.qv-carousel__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.qv-carousel__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--crema-dark);
  color: var(--texto-suave);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
}

.qv-carousel__dot:hover {
  border-color: var(--dorado);
  color: var(--tierra);
}

.qv-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 20px;
}

.qv-carousel__track::-webkit-scrollbar {
  display: none;
}

.qv-carousel__panel {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.qv-carousel__panel .card--featured {
  border-radius: 20px;
}

.qv-carousel__panel .eyebrow {
  color: var(--tierra);
}

.qv-carousel__side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 16, 12, 0.4);
  color: var(--crema);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s;
}

.qv-carousel__side-arrow:hover {
  background: rgba(20, 16, 12, 0.72);
}

.qv-carousel__side-arrow--prev {
  left: 16px;
}

.qv-carousel__side-arrow--next {
  right: 16px;
}

.qv-carousel__arrows {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.qv-carousel__arrow {
  cursor: pointer;
  color: var(--tierra);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.92rem;
  text-decoration: none;
}

.qv-carousel__arrow:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .qv-carousel__side-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
  }
}

/* ---------- Equipo ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.team-card {
  background: var(--blanco);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(43, 36, 32, 0.06);
}

.team-card__photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  background: var(--crema-dark);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h4 {
  color: var(--verde);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-card p {
  font-size: 0.88rem;
  color: var(--texto-suave);
  margin: 0;
}

/* ---------- Calendario / Timeline ---------- */

.timeline {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--blanco);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 8px 24px rgba(43, 36, 32, 0.06);
  border-left: 4px solid var(--dorado);
}

.timeline-item__date {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--verde);
  font-size: 1.05rem;
  line-height: 1.2;
}

.timeline-item__info h4 {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--texto);
}

.timeline-item__info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--texto-suave);
}

.timeline-item__status {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.status--confirmado {
  background: rgba(51, 71, 47, 0.12);
  color: var(--verde);
}

.status--propuesto {
  background: rgba(198, 154, 75, 0.18);
  color: var(--tierra-dark);
}

@media (max-width: 640px) {
  .timeline-item {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .timeline-item__status { justify-self: start; }
}

/* ---------- Calendario / Tarjetas de fecha ---------- */

.date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.date-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blanco);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(43, 36, 32, 0.06);
}

.date-card__date {
  text-align: center;
  min-width: 48px;
}

.date-card__day {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--tierra);
  font-size: 1.6rem;
  line-height: 1;
}

.date-card__month {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--texto-suave);
}

.date-card__title {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--texto);
}

.date-card__loc {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: var(--texto-suave);
}

.date-card--muted {
  background: var(--crema-dark);
  box-shadow: none;
  border: 1px dashed rgba(43, 36, 32, 0.15);
}

/* ---------- Agrupación por mes ---------- */

.month-group {
  margin-bottom: 36px;
}

.month-group__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--verde);
  color: var(--blanco);
  margin: 0 0 16px;
}

/* Acento de color por ciudad, para ubicar tu ciudad de un vistazo dentro de cada mes */
.date-card--trujillo { border-left: 4px solid var(--tierra); }
.date-card--lima { border-left: 4px solid var(--verde-light); }
.date-card--piura { border-left: 4px solid var(--dorado); }

.date-card__city {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 999px;
  color: var(--blanco);
  margin-bottom: 4px;
}

.date-card__city--trujillo { background: var(--tierra); }
.date-card__city--lima { background: var(--verde); }
.date-card__city--piura { background: var(--dorado); color: var(--texto); }

/* ---------- Sección con foto de fondo (genérica) ---------- */

.section--photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--verde);
  overflow: hidden;
}

.section--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,36,32,0.6), rgba(43,36,32,0.78));
  z-index: 1;
}

.section--photo .container {
  position: relative;
  z-index: 2;
}

.section--photo .eyebrow {
  color: var(--dorado);
}

.section--photo h2,
.section--photo h3 {
  color: var(--crema);
}

.section--photo p {
  color: rgba(250, 247, 242, 0.92);
}

.section--photo .check-list li {
  color: rgba(250, 247, 242, 0.92);
}

.section--photo .note {
  background: rgba(20, 16, 12, 0.4);
  border-left-color: var(--dorado);
  color: rgba(250, 247, 242, 0.92);
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 60px; }
}
