.btn-texto{
  font-weight: 600;
  color: #bd4e25;
}



/* ========================================
   Horarios y renta para eventos con fotografías laterales
======================================== */

.info-band {
  padding: 0 0 110px;
  background: var(--cream);
}

.info-stack {
  display: grid;
  gap: 24px;
}

.info-feature {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: var(--radius);
  background: var(--paper);
}

.info-feature .panel {
  border: 0;
  border-radius: 0;
}

.info-feature-copy {
  min-height: 590px;
}

.info-feature-photo {
  min-height: 590px;
  margin: 0;
  background: var(--ink-soft);
}

.info-feature-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.panel-dark {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  background: var(--ink-soft);
  color: #fff;
}

.panel-dark::after {
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.panel h2,
.panel h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.panel p {
  margin: 22px 0 0;
}

.panel .button {
  margin-top: 30px;
}

.schedule {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
}

.schedule tr {
  border-top: 1px solid var(--line);
}

.schedule th,
.schedule td {
  padding: 12px 0;
  text-align: left;
  vertical-align: top;
}

.schedule th {
  width: 42%;
  font-weight: 600;
}

.schedule td {
  color: #615750;
}

/* ========================================
   Promociones con fotografía superior
======================================== */

.promotions {
  padding: 120px 0;
  background: var(--orange);
  color: #fff;
}

.promotions .eyebrow,
.promotions .section-intro {
  color: rgba(255, 255, 255, 0.8) !important;
}

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

.promo-card {
  position: relative;
  display: flex;
  min-height: 0px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(60, 19, 8, 0.08);
  flex-direction: column;
}

.promo-card::after {
  display: none;
}

.promo-card > :not(.promo-card-bg) {
  position: static;
}

.promo-card-bg {
  position: static;
  width: 100%;
  height: 200px;
  flex: 0 0 200px;
  object-fit: cover;
  transition: filter 220ms ease;
}

.promo-card:hover .promo-card-bg {
  filter: brightness(0.92);
}

.promo-day {
  display: inline-block;
  margin: 26px 28px 0;
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-card h3 {
  margin: 10px 28px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
}

.promo-card h5 {
  margin: 150px 30px 100px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.05;
}

.promo-card p {
  margin: 5px 28px 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.promo-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.promo-botn{
  padding:27% 0px;
}

.promo-botn .button{
  max-width: 250px !important;
  margin: 0 auto;
}

@media (max-width: 560px) {

  .promo-card h5 {
    margin: 50px 30px 50px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.05;
  }
}

/* ========================================
   Carrusel de fotografías
======================================== */

.gallery-section {
  overflow: hidden;
  padding: 0;
  background: #101016;
}

.gallery-shell {
  position: relative;
}

.branch-gallery {
  overflow: visible;
}

.branch-gallery .swiper-slide {
  width: min(72vw, 760px);
  opacity: 0.58;
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.branch-gallery .swiper-slide-active {
  opacity: 1;
}

.gallery-card {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.gallery-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(
    0deg,
    rgba(14, 11, 10, 0.8),
    transparent
  );
  content: "";
  pointer-events: none;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-controls {
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.gallery-control {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid  #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.gallery-control:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.gallery-pagination {
  position: static;
  width: auto;
  min-width: 68px;
  color:  #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}

/* Respaldo cuando Swiper no carga */

.branch-gallery:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.branch-gallery:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 min(72vw, 760px);
  opacity: 1;
  scroll-snap-align: start;
}

/* ========================================
   Sección independiente de redes sociales
======================================== */

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.social-links a {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.social-section {
  padding: 100px 0;
  background: var(--ink);
  color: #fff;
}

.social-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
}

.social-section h2 {
  color: #fff;
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.social-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.social-links-light {
  justify-content: flex-end;
}

.social-links-light a {
  border-color: rgba(255, 255, 255, 0.28);
}

.social-links-light a:hover {
  background: #fff;
  color: var(--ink);
}

/* ========================================
   Contacto con fotografía del lugar y mapa
======================================== */

.location-contact {
  padding: 120px 0;
  background: var(--cream);
}

.location-contact-head {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.55fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

.location-contact-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.location-contact-head .section-intro {
  margin: 0;
}

.location-visuals {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.location-visual {
  position: relative;
  min-height: 490px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.location-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(
    0deg,
    rgba(13, 10, 9, 0.82),
    transparent
  );
  content: "";
}

.location-visual img {
  display: block;
  width: 100%;
  height: 490px;
  object-fit: cover;
}

.location-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-map img {
  filter: saturate(0.75) contrast(0.92);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ========================================
   Animaciones de aparición
======================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   SECCIÓN: SOMOS UN SET EN VIVO
======================================== */

.production-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--ink-soft);
  color: #fff;
  isolation: isolate;
}

/* Capa oscura para mantener los textos legibles */
.production-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 14, 11, 0.96) 0%,
    rgba(35, 20, 14, 0.86) 48%,
    rgba(35, 20, 14, 0.56) 100%
  );
  content: "";
}

/* Fotografía de fondo */
.production-section-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Distribución del contenido */
.production-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(340px, 0.72fr);
  align-items: end;
  gap: clamp(54px, 9vw, 130px);
}

.production-copy {
  max-width: 760px;
}

.production-copy .eyebrow {
  color: #f1aa8b;
}

.production-copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8.3rem);
  font-weight: 500;
  letter-spacing: -0.06em;
   line-height: 0.86;
}

.production-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.production-copy .production-lead {
  color: #fff;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.45;
}

/* Etiquetas: Fotografía, Video, Campañas, etc. */
.production-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.production-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Tarjetas de las sucursales */
.production-branches {
  display: grid;
  gap: 14px;
}

.production-branch-card {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(28, 20, 16, 0.76);
  backdrop-filter: blur(10px);
}

.production-branch-card > span {
  color: #f1aa8b;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.production-branch-card h3 {
  margin: 13px 0 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.production-branch-card p {
  margin: 15px 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.production-branch-card a {
  display: inline-flex;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.production-branch-card a:hover {
  color: #f1aa8b;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1080px) {
  .production-layout {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CELULAR
======================================== */

@media (max-width: 800px) {
  .production-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .production-section::before {
    background: linear-gradient(
      180deg,
      rgba(20, 14, 11, 0.92),
      rgba(35, 20, 14, 0.82)
    );
  }

  .production-copy h2 {
    font-size: clamp(3.7rem, 18vw, 6rem);
  }
}

/* ========================================
   Responsive para estas secciones
======================================== */

@media (max-width: 800px) {
  .info-feature,
  .location-contact-head,
  .location-visuals,
  .social-section-inner {
    grid-template-columns: 1fr;
  }

  .info-feature-copy,
  .info-feature-photo,
  .info-feature-photo img {
    min-height: auto;
  }

  .info-feature-photo img {
    height: 480px;
  }

  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-contact-head .eyebrow {
    margin-bottom: 0;
  }

  .social-section-inner {
    align-items: start;
    gap: 26px;
  }

  .social-links-light {
    justify-content: flex-start;
  }

  .location-visual,
  .location-visual img {
    min-height: 440px;
    height: 440px;
  }
}

@media (max-width: 560px) {
  .info-band,
  .promotions,
  .gallery-section,
  .social-section,
  .location-contact {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    min-height: 420px;
  }

  .promo-card-bg {
    height: 190px;
    flex-basis: 190px;
  }

  .location-visual,
  .location-visual img {
    min-height: 390px;
    height: 390px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-actions .button {
    width: 100%;
  }

  .branch-gallery .swiper-slide,
  .branch-gallery:not(.swiper-initialized) .swiper-slide {
    width: 88vw;
    flex-basis: 88vw;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 410px;
    height: 410px;
  }
}


.capacity-list,
.amenity-list {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.capacity-list li {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  gap: 24px;
}

.capacity-list span {
  color: #6b615a;
}

.amenity-list {
  border-top-color: rgba(255, 255, 255, 0.18);
  counter-reset: amenity;
}

.amenity-list li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
  counter-increment: amenity;
}

.amenity-list li::before {
  position: absolute;
  left: 0;
  color: #f1aa8b;
  content: "0" counter(amenity);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}