@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

html,
body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
  background: #ffffff;
}

/* Montserrat: alternativa gratuita en Google Fonts al estilo Gotham */
body {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
}

.app-wrapper {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Navbar fijo — aparece suave al hacer scroll */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.875rem 1.5rem 1rem;
  background: #ffffff;
  box-shadow: 0 2px 24px rgba(0, 0, 0, calc(var(--nav-opacity, 0) * 0.08));
  transform: translateY(var(--nav-offset, -100%));
  opacity: var(--nav-opacity, 0);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    visibility 0s linear 0.35s;
}

.site-nav.is-visible {
  visibility: visible;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    visibility 0s linear 0s;
}

.site-nav-logo {
  position: relative;
  display: block;
  height: 3.5rem;
  width: min(14rem, 74vw);
  overflow: hidden;
  flex-shrink: 0;
}

.site-nav-logo img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 5.5rem;
  max-width: none;
  transform: translate(-50%, -50%) scale(1.02);
  transform-origin: center center;
  pointer-events: none;
}

.site-nav-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.site-nav-menu a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1a1a;
  transition: opacity 0.2s ease;
}

.site-nav-menu a:hover {
  opacity: 0.55;
}

.site-nav-sep {
  font-size: 0.6875rem;
  color: #aaaaaa;
  user-select: none;
}

@media (min-width: 768px) {
  .site-nav {
    gap: 0.3rem;
    padding: 1rem 2rem 1.125rem;
  }

  .site-nav-logo {
    height: 4rem;
    width: min(16rem, 50vw);
  }

  .site-nav-logo img {
    height: 6.5rem;
    transform: translate(-50%, -50%) scale(1.03);
  }

  .site-nav-menu a {
    font-size: 0.75rem;
  }
}

/* Footer — mismo lenguaje visual que el navbar */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem 3rem;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.site-footer-logo {
  position: relative;
  display: block;
  height: 3.5rem;
  width: min(14rem, 74vw);
  overflow: hidden;
  flex-shrink: 0;
}

.site-footer-logo img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 5.5rem;
  max-width: none;
  transform: translate(-50%, -50%) scale(1.02);
  transform-origin: center center;
  pointer-events: none;
}

.site-footer-menu,
.site-footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.site-footer-menu a,
.site-footer-link {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1a1a;
  transition: opacity 0.2s ease;
}

.site-footer-menu a:hover,
.site-footer-link:hover {
  opacity: 0.55;
}

.site-footer-sep {
  font-size: 0.6875rem;
  color: #aaaaaa;
  user-select: none;
}

.site-footer-copy {
  margin: 0.25rem 0 0;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888888;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer {
    gap: 1.125rem;
    padding: 3rem 2rem 3.5rem;
  }

  .site-footer-logo {
    height: 4rem;
    width: min(16rem, 50vw);
  }

  .site-footer-logo img {
    height: 6.5rem;
    transform: translate(-50%, -50%) scale(1.03);
  }

  .site-footer-menu a,
  .site-footer-link {
    font-size: 0.75rem;
  }

  .site-footer-copy {
    font-size: 0.6875rem;
  }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.visual-intro-media.reveal-right {
  transition: all 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Hero – marco escalable; el fondo alrededor queda blanco puro (#fff) */
.hero-bg-frame {
  position: absolute;
  inset: 0;
  transform: scale(1.14);
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.62) 50%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-frame {
    transform: scale(1);
  }
}

/* HERO – fondo blanco 100% visible en el zoom out */
.section-hero {
  min-height: 108vh;
  background: #ffffff;
}

.hero-bg-stage {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.08s linear;
}

.hero-cta {
  display: inline-block;
  margin-top: clamp(1.75rem, 4vh, 2.5rem);
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid #ffffff;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(6px);
}


.hero-logo {
  display: block;
  width: min(94vw, 36rem);
  height: auto;
  margin: 0 auto;
  /* El PNG trae fondo negro: screen deja ver la foto del hero */
  mix-blend-mode: screen;
}

@media (min-width: 768px) {
  .hero-logo {
    width: min(88vw, 48rem);
  }
}

@media (min-width: 1024px) {
  .hero-logo {
    width: min(82vw, 56rem);
  }
}

/* VISUAL PROJECT INTRO – 2 columnas 50/50, texto izquierda e imagen derecha */
.section-visual-intro {
  overflow-x: hidden;
  background: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 5.5rem;
}

.visual-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 97.2vh;
  min-height: 97.2vh;
}

.visual-intro-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 0;
  padding: 2rem clamp(2rem, 5vw, 4rem);
}

.visual-intro-media {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.visual-intro-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 1023px) {
  .visual-intro-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    height: 97.2vh;
    min-height: 97.2vh;
  }

  .visual-intro-text {
    padding: 2rem 1.5rem;
  }

  .visual-intro-media {
    order: 2;
    height: 100%;
  }

  .visual-intro-image {
    object-position: center center;
  }
}

.section-visual-intro .visual-intro-caption h2 {
  font-size: clamp(2.35rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 1rem;
  max-width: 32rem;
}

.section-visual-intro .visual-intro-caption p {
  font-size: clamp(1.0625rem, 1.8vw, 1.375rem);
  line-height: 1.6;
  color: #555555;
  margin-bottom: 1.75rem;
  max-width: 26rem;
}

.section-visual-intro .visual-intro-caption .btn-hover {
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  border: 1px solid #334f3b;
  border-radius: 2rem;
  background-color: #334f3b;
  color: #ffffff;
  align-self: center;
}

.section-visual-intro .visual-intro-caption .btn-hover::before {
  border-radius: inherit;
}

/* Franja intro — Nuestras Instalaciones (antes del showcase) */
.showcase-intro {
  --intro-band-height: clamp(11rem, 20vh, 16rem);
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--intro-band-height);
  min-height: var(--intro-band-height);
  padding: 0 2rem;
  background-color: #ffffff;
  text-align: center;
}

.showcase-intro-title {
  margin: 0;
  font-size: calc(0.72 * var(--intro-band-height));
  font-weight: 700;
  line-height: 1;
  color: #334f3b;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .showcase-intro {
    --intro-band-height: auto;
    height: auto;
    min-height: unset;
    padding: 2.75rem 1.25rem 3rem;
  }

  .showcase-intro-title {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.15;
    max-width: 100%;
  }
}

/* SHOWCASE */
.section_showcase {
  display: flex;
  height: 85vh;
}

.showcase-item {
  flex: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: flex 0.6s ease;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.6s;
}

.showcase-item:hover {
  flex: 3;
}

.showcase-item:hover img {
  filter: grayscale(0);
}

.showcase-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.showcase-item-caption p {
  margin: 0;
  font-size: clamp(1.125rem, 1.6vw, 1.625rem);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .section_showcase {
    flex-direction: column;
    height: auto;
  }

  .showcase-item {
    flex: none;
    width: 100%;
    height: 72vh;
    min-height: 22rem;
    max-height: 32rem;
  }

  .showcase-item:hover {
    flex: none;
  }

  .showcase-item img {
    filter: grayscale(0);
  }
}

/* Parallax container */
.parallax-container {
  overflow: hidden;
  position: relative;
}

.parallax-image {
  will-change: transform;
}

.hero-bg-frame {
  transition: transform 0.08s linear;
}

/* Project card hover */
.project-card {
  position: relative;
  overflow: hidden;
}

.project-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-card:hover .card-overlay {
  opacity: 1;
}

.project-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .card-content {
  transform: translateY(0);
  opacity: 1;
}

.project-card .card-image {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .card-image {
  transform: scale(1.05);
}

/* Hero fade in */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  animation: heroFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-animate-delay-1 {
  opacity: 0;
  animation: heroFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-animate-delay-2 {
  opacity: 0;
  animation: heroFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-animate-delay-3 {
  opacity: 0;
  animation: heroFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

/* Horizontal scroll gallery */
.gallery-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

/* Process step line */
.process-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, currentColor, transparent);
  opacity: 0.2;
}

/* Button hover effect */
.btn-hover {
  position: relative;
  overflow: hidden;
}

.btn-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
}

.btn-hover:hover::before {
  left: 100%;
}

/* Our Wine / Actividades – imagen de fondo, título arriba a la derecha */
.our-wine-section {
  overflow: hidden;
  min-height: 540px;
  height: 90vh;
}

.philosophy-section {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.our-wine-section.philosophy-section {
  align-items: stretch;
}

.our-wine-bottle {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  display: block;
  width: clamp(18rem, 44vw, 36rem);
  height: auto;
  max-height: 82%;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
}

.philosophy-bg {
  background-image: url('images/philosophy-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.our-wine-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  min-height: 100%;
  padding: 7vh clamp(3rem, 11vw, 11rem) 4rem 2rem;
  text-align: right;
}

.our-wine-title {
  margin: 0;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #000000;
  letter-spacing: 0.02em;
}

.our-wine-activities {
  list-style: none;
  flex: 1;
  margin: 2.5rem 0 0;
  padding: 0 0 6vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 24rem;
  margin-left: auto;
}

.activity-card {
  width: 100%;
  padding: 0.875rem 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(51, 79, 59, 0.22);
  border-radius: 0.5rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.35;
  color: #334f3b;
  letter-spacing: 0.02em;
  text-align: right;
  backdrop-filter: blur(6px);
}

.philosophy-content,
.philosophy-content .our-wine-title,
.philosophy-content .activity-card {
  color: #000000;
}

.philosophy-content .activity-card {
  color: #334f3b;
}

/* Reveal columns section – más altura para freeze; spacer abajo hace la salida mucho más suave */
.section-reveal-columns {
  min-height: 260vh;
  position: relative;
}
.reveal-columns-spacer {
  height: 200vh;
  pointer-events: none;
}

.section-black-full {
  min-height: 100vh;
  background: #000;
}

/* Galería GLB: scroll vertical desplaza slides en horizontal */
.section-gallery-glb {
  min-height: 300vh;
  position: relative;
  background: #000;
}
.gallery-glb-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.gallery-glb-track {
  display: flex;
  width: 300vw;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gallery-glb-slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-glb-viewer {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
}
.reveal-columns-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1), transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-columns-copy {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0 2rem 0 5%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-out;
}

.reveal-columns-header {
  margin: 0;
  padding: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reveal-columns-cta {
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  border: 1px solid #334f3b;
  border-radius: 2rem;
  background-color: #334f3b;
  color: #ffffff;
  pointer-events: auto;
  cursor: pointer;
}

.reveal-columns-cta::before {
  border-radius: inherit;
}
.reveal-columns-row {
  display: flex;
  width: 100%;
  height: 100%;
}
.reveal-col {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.reveal-col-inner {
  width: 100%;
  height: 100%;
  background-image: url('images/reveal-columns-bg.jpg');
  background-repeat: no-repeat;
  background-size: 300% 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.reveal-col-1 .reveal-col-inner {
  background-position: 0% 0;
}
.reveal-col-2 .reveal-col-inner {
  background-position: 50% 0;
}
.reveal-col-3 .reveal-col-inner {
  background-position: 100% 0;
}

/* Cinematic overlay */
.cinematic-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.active > *:nth-child(1) {
  transition-delay: 0.15s;
}
.stagger-children.active > *:nth-child(2) {
  transition-delay: 0.3s;
}
.stagger-children.active > *:nth-child(3) {
  transition-delay: 0.45s;
}
.stagger-children.active > *:nth-child(4) {
  transition-delay: 0.6s;
}
.stagger-children.active > *:nth-child(5) {
  transition-delay: 0.75s;
}

.our-wine-activities.stagger-children > * {
  transform: translateY(20px) translateX(12px);
}

.our-wine-activities.stagger-children.active > * {
  transform: translateY(0) translateX(0);
}

.stagger-children.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PÁGINA PROGRAMA ========== */
.programa-hero {
  min-height: 70vh;
  background: #ffffff;
}

.programa-hero-bg {
  background-image: url('images/banner-vendimia.jpeg');
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.programa-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.programa-hero-content {
  padding-top: 5rem;
}

.programa-hero-title {
  margin: 0;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.programa-hero-subtitle {
  margin: 1.25rem 0 0;
  font-size: clamp(0.875rem, 1.6vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.programa-info {
  background: #ffffff;
  padding: clamp(3.5rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(1.25rem, 2.5vh, 2rem);
}

.programa-info-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.programa-info-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

.programa-days {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vh, 3rem);
  max-width: min(94vw, 68rem);
  margin: 0 auto;
  padding: clamp(2rem, 4vh, 3rem) clamp(1.25rem, 3vw, 2rem) clamp(0.5rem, 1vh, 1rem);
  background: #ffffff;
}

.programa-days-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

.programa-days-shared {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: clamp(1rem, 2.5vh, 1.75rem);
  text-align: center;
}

.programa-days-shared-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.2;
  color: #334f3b;
}

.programa-days-shared p {
  margin: 0;
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  font-weight: 300;
  line-height: 1.6;
  color: #555555;
}

.programa-days-shared .programa-minors {
  margin-bottom: 0.25rem;
}

.programa-day-card {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border: 1px solid rgba(51, 79, 59, 0.22);
  border-radius: 0.75rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.programa-day-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #334f3b;
}

.programa-day-details {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.programa-day-details p {
  margin: 0;
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  font-weight: 300;
  line-height: 1.6;
  color: #555555;
}

.programa-day-hours {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem) !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .programa-days-grid {
    grid-template-columns: 1fr;
  }
}

.programa-info-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.programa-info-details p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
  color: #555555;
}

.programa-price {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem) !important;
  color: #334f3b !important;
  font-weight: 500 !important;
}

.programa-price strong {
  font-weight: 700;
}

.programa-minors {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  background: rgba(51, 79, 59, 0.07);
  border: 1px solid rgba(51, 79, 59, 0.14);
}

.programa-minors p {
  margin: 0;
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem) !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  color: #3d4f42 !important;
}

.programa-minors p + p {
  margin-top: 0.35rem;
}

.programa-minors-title {
  margin-bottom: 0.5rem !important;
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #334f3b !important;
}

.programa-includes,
.programa-extra {
  max-width: 34rem;
  margin-left: auto !important;
  margin-right: auto !important;
}

.programa-cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(2.75rem, 5vh, 4rem) 1.5rem clamp(2.5rem, 5vh, 3.5rem);
  background: #ffffff;
}

.programa-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  column-gap: clamp(2.5rem, 6vw, 4.5rem);
  row-gap: clamp(1rem, 2vh, 1.5rem);
  width: 100%;
}

.programa-cta-buttons .programa-whatsapp-cta {
  flex: 0 1 auto;
  width: min(24.5rem, 100%);
  max-width: 24.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
  line-height: 1.4;
  font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
}

.programa-whatsapp-cta {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid #334f3b;
  border-radius: 2rem;
  background-color: #334f3b;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.programa-whatsapp-cta::before {
  border-radius: inherit;
}

.programa-schedule-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 110vh;
  background: #ffffff;
}

.programa-schedule-body {
  flex: 1;
}

.programa-schedule-footer {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  min-height: clamp(18rem, 26vh, 24rem);
  padding-top: clamp(3.5rem, 8vh, 6rem);
  padding-bottom: clamp(2rem, 4vh, 3rem);
}

.programa-bottle {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  width: clamp(18rem, 40vw, 36rem);
  height: auto;
  max-height: 50vh;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
}

.programa-schedule-intro,
.programa-schedule,
.programa-back {
  position: relative;
  z-index: 2;
}

.programa-schedule-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(2.75rem, 6vh, 4rem) 2rem 0;
  text-align: center;
}

.programa-schedule-day {
  margin: 0;
  font-size: clamp(0.875rem, 1.4vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555555;
}

.programa-schedule-intro--day {
  padding-top: clamp(3.5rem, 7vh, 5rem);
  padding-bottom: 0;
}

.programa-schedule-title {
  margin: 0;
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: #334f3b;
  letter-spacing: 0.02em;
}

.programa-schedule {
  max-width: min(92vw, 56rem);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vh, 4rem) clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 2.5vh, 2rem);
}

.programa-timeline {
  --programa-time-col: 5.5rem;
  --programa-marker-col: 1.5rem;
  --programa-col-gap: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}

.programa-timeline::before {
  content: '';
  position: absolute;
  left: calc(var(--programa-time-col) + var(--programa-col-gap) + (var(--programa-marker-col) / 2));
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(51, 79, 59, 0.35), transparent);
  transform: translateX(-50%);
}

.programa-slot {
  display: grid;
  grid-template-columns: var(--programa-time-col) var(--programa-marker-col) 1fr;
  column-gap: var(--programa-col-gap);
  align-items: start;
  padding: 0.875rem 0;
}

.programa-slot::before {
  content: '';
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  margin-top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #334f3b;
  box-shadow: 0 0 0 3px rgba(51, 79, 59, 0.15);
  z-index: 1;
}

.programa-slot--finale::before {
  background: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.12);
}

.programa-time {
  grid-column: 1;
  grid-row: 1;
  display: block;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #334f3b;
  text-align: right;
  padding-right: 0.15rem;
  white-space: nowrap;
}

.programa-events {
  grid-column: 3;
  grid-row: 1;
  list-style: none;
  margin: 0;
  padding: 0.875rem 1.35rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(51, 79, 59, 0.22);
  border-radius: 0.5rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.programa-events li {
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.45;
  color: #334f3b;
  letter-spacing: 0.02em;
}

.programa-events li + li {
  margin-top: 0.45rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(51, 79, 59, 0.1);
}

.programa-back {
  display: flex;
  justify-content: center;
  margin: 0;
}

.programa-cta {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  border: 1px solid #334f3b;
  border-radius: 2rem;
  background-color: #334f3b;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.programa-cta::before {
  border-radius: inherit;
}

.reveal-columns-cta {
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 767px) {
  .programa-timeline {
    --programa-time-col: 4.75rem;
    --programa-marker-col: 1.25rem;
    --programa-col-gap: 1rem;
  }
}
