﻿/* ==========================================================
   TRES ANTENAS
   Paleta: blanco, negro, grises â€” derivada del logo
   ========================================================== */

:root {
  --black:      #0a0a0a;
  --surface:    #111111;
  --surface-2:  #1c1c1c;
  --white:      #ffffff;
  --g1: rgba(255, 255, 255, 0.72);
  --g2: rgba(255, 255, 255, 0.42);
  --line:       rgba(255, 255, 255, 0.10);
  --line-faint: rgba(255, 255, 255, 0.05);
  --container:  1160px;
  --radius:     14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 48px, 800px);
  margin: 0 auto;
}

/* ==================== NAV ==================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 72px;
  width: min(100% - 16px, 1480px);
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--g2);
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ==================== FLOATING WA ==================== */

#float-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-float {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.65);
}

/* ==================== HERO ==================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 110px;
}

/* Logo de marca al fondo del hero */
.hero-brand {
  width: 360px;
  height: 240px;
  object-fit: contain;
  display: block;
  margin: 0 0 16px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 20px;
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8.5vw, 8.5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: var(--g1);
  max-width: 54ch;
  line-height: 1.72;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==================== BOTONES ==================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s, color 0.15s, border-color 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.86);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--g1);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
}

.btn-lg {
  height: 60px;
  padding: 0 36px;
  font-size: 1rem;
}

/* ==================== VENUES ==================== */

.venues-section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.venues-h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 52px;
}


/* Grilla con lÃ­neas separadoras usando gap + background (sin borders individuales) */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.venue-item {
  background: var(--black);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.15s;
}

.venue-item:hover {
  background: var(--surface);
}

.venue-img {
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  overflow: hidden;
  flex-shrink: 0;
}

.venue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  color: transparent;
  transition: transform 0.4s ease;
}

.venue-item:hover .venue-img img {
  transform: scale(1.04);
}

.venue-text {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.venue-name {
  display: block;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.venue-detail {
  display: block;
  font-size: 0.83rem;
  color: var(--g2);
  line-height: 1.5;
}

/* ==================== QUIÃ‰NES SOMOS â€” grid dos columnas ==================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  color: var(--g1);
  font-size: 1.04rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-photo {
  position: sticky;
  top: 100px;
  aspect-ratio: 3 / 4;
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-photo img,
.about-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  color: transparent;
}

/* ==================== SECCIONES BASE ==================== */

.section {
  padding: 160px 0;
}

.section-ruled {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-tag {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 52px;
}

/* Texto de prosa en secciones narrow */
.narrow p {
  color: var(--g1);
  font-size: 1.04rem;
  line-height: 1.72;
  margin-bottom: 18px;
}

/* ==================== SERVICIOS ==================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  background: var(--black);
  display: flex;
  flex-direction: column;
  transition: background 0.18s;
}

.service-card:hover {
  background: var(--surface);
}

.card-img {
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  overflow: hidden;
  flex-shrink: 0;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  color: transparent;
  transition: transform 0.4s ease;
}

.service-card:hover .card-img img {
  transform: scale(1.04);
}

.card-body {
  padding: 36px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--g2);
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--g2);
  line-height: 1.62;
}

/* ==================== DIFERENCIAL ==================== */

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.diff-item {
  background: transparent;
  padding: 48px 40px 52px;
  border-right: 1px solid rgba(0, 0, 0, 0.10);
  position: relative;
  overflow: hidden;
  transition: background 0.22s ease;
}

.diff-item:last-child {
  border-right: none;
}

.diff-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.30s cubic-bezier(0.4, 0, 0.2, 1);
}

.diff-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.diff-item:hover::before {
  transform: scaleX(1);
}



#diferencial h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--black);
}

.diff-item h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--black);
}

.diff-item p {
  font-size: 1rem;
  color: var(--black);
  line-height: 1.65;
}

/* ==================== EXPERIENCIA ==================== */

.exp-list {
  list-style: none;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.exp-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}

.exp-list li:last-child {
  border-bottom: none;
}

.exp-list li:hover {
  background: var(--surface);
}

.exp-img {
  flex-shrink: 0;
  width: 130px;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  border-radius: 8px;
  overflow: hidden;
}

.exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  color: transparent;
}

.exp-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 3px;
}

.exp-content strong {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.exp-content span {
  font-size: 0.85rem;
  color: var(--g2);
}

/* ==================== PACKS ==================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 52px;
}

.pricing-card {
  background: var(--surface);
  padding: 44px 24px 36px;
  min-height: 280px;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 0.30s cubic-bezier(0.34, 1.36, 0.64, 1), background 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
  will-change: transform;
}

.pricing-card {
  cursor: pointer;
}

.pricing-card:hover {
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.22);
  transform: scale(1.14);
  z-index: 10;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65);
}

.pricing-range {
  display: none;
}

.pricing-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--white);
}

.pricing-card p {
  font-size: 0.87rem;
  color: var(--g1);
  line-height: 1.65;
  flex: 1;
}

.pricing-note {
  display: block;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--g2);
}

/* ==================== CTA ==================== */

.cta-section {
  border-top: 1px solid var(--line);
}

.cta-section .section-tag {
  margin-bottom: 16px;
}

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.cta-lead {
  color: var(--g1);
  font-size: 1.04rem;
  line-height: 1.72;
  max-width: 58ch;
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0 24px;
}

.contact-email {
  font-size: 0.86rem;
  color: var(--g2);
}

.contact-email a:hover {
  color: var(--white);
}

/* ==================== FOOTER ==================== */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-logo {
  height: 34px;
  width: auto;
  opacity: 0.55;
  flex-shrink: 0;
}

.footer-text p {
  font-size: 0.85rem;
  color: var(--g2);
  line-height: 1.55;
}

/* ==================== SECCIONES CLARAS (blanco sobre negro) ==================== */

.section-light {
  background: var(--white);
  color: var(--black);
}

/* Bordes de secciÃ³n en modo claro */
.section-light.section-ruled,
.section-light.venues-section {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

/* Etiquetas y texto secundario */
.section-light .section-tag {
  color: rgba(0, 0, 0, 0.38);
}

.section-light h2,
.section-light h3,
.section-light strong {
  color: var(--black);
}

.section-light .narrow p,
.section-light p {
  color: rgba(0, 0, 0, 0.60);
}

/* Separadores de grillas en modo claro */
.section-light .venues-grid,
.section-light .services-grid,
.section-light .diff-grid,
.section-light .pricing-grid {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.07);
}

/* Fondos de cards */
.section-light .venue-item,
.section-light .service-card,
.section-light .diff-item,
.section-light .pricing-card {
  background: var(--white);
}

.section-light .venue-item:hover,
.section-light .service-card:hover,
.section-light .diff-item:hover {
  background: #f3f3f3;
}

.section-light .pricing-card {
  background: var(--black);
  border-color: rgba(0, 0, 0, 0.12);
}

.section-light .pricing-card h3 {
  color: var(--white);
}

.section-light .pricing-card p {
  color: var(--g2);
}

.section-light .pricing-card:hover {
  background: var(--white);
  border-color: var(--black);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  transform: scale(1.14);
  z-index: 10;
}

.section-light .pricing-card:hover h3 {
  color: var(--black);
}

.section-light .pricing-card:hover p {
  color: rgba(0, 0, 0, 0.60);
}

.section-light .pricing-card:hover .pack-cta {
  border-color: rgba(0, 0, 0, 0.22);
  color: rgba(0, 0, 0, 0.75);
}

.section-light .pricing-card:hover .pack-cta:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Texto dentro de cards */
.section-light .venue-detail,
.section-light .service-card p,
.section-light .diff-item p {
  color: rgba(0, 0, 0, 0.52);
}

.section-light .card-num {
  color: rgba(0, 0, 0, 0.30);
}

.section-light .pricing-range {
  color: var(--black);
}

.section-light .pricing-note {
  color: rgba(0, 0, 0, 0.40);
}

/* Placeholders de imagen en modo claro */
.section-light .card-img,
.section-light .venue-img,
.section-light .exp-img {
  background: #e2e2e2;
}

/* Lista experiencia en modo claro */
.section-light .exp-list {
  border-color: rgba(0, 0, 0, 0.09);
}

.section-light .exp-list li {
  border-color: rgba(0, 0, 0, 0.09);
}

.section-light .exp-list li:hover {
  background: #f3f3f3;
}

.section-light .exp-content strong {
  color: var(--black);
}

.section-light .exp-content span {
  color: rgba(0, 0, 0, 0.50);
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 96px 0 80px;
  }

  .venues-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }


  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo {
    position: static;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 76px 0 64px;
  }

  .section {
    padding: 96px 0;
  }


  .venues-grid,
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff-item {
    padding: 36px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  }

  .diff-item:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.10);
  }

  .diff-item:nth-child(even) {
    border-right: none;
  }

  .diff-item:last-child,
  .diff-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  .pricing-card {
    padding: 32px;
  }

  .card-body {
    padding: 28px 28px 32px;
  }

  .exp-img {
    width: 90px;
  }

  .exp-list li {
    gap: 16px;
    padding: 20px 20px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-lg {
    width: 100%;
  }

  #float-actions {
    bottom: 20px;
    right: 16px;
    gap: 8px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ==========================================================
   NUEVOS COMPONENTES â€” solo adiciones, sin tocar lo anterior
   ========================================================== */

/* ---- HERO â€” foto de fondo + parallax ---- */

.hero--fullscreen {
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  padding: 0;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center center;
  display: block;
  will-change: transform;
  border-radius: 10px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ---- VENUES â€” hover revela foto (secciÃ³n oscura) ---- */

.venue-item--photo {
  position: relative;
  height: 260px;
  background: var(--black);
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.venue-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: transform 0.3s ease;
  display: block;
}

.venue-item--photo:hover .venue-bg-img {
  transform: scale(1.04);
}

.venue-item--zoom .venue-bg-img {
  transition: transform 2s ease-out;
}
.venue-item--zoom:hover .venue-bg-img {
  transform: scale(1.13);
}

.venue-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  transition: background 0.35s ease;
  z-index: 1;
}

.venue-item--photo:hover .venue-photo-overlay {
  background: rgba(0, 0, 0, 0);
}

.venue-item--photo .venue-text {
  position: relative;
  z-index: 2;
  padding: 22px 26px;
}

.venue-item--photo .venue-name {
  color: var(--white);
}

.venue-item--photo .venue-detail {
  color: var(--g1);
}

/* ---- SERVICIOS â€” foto de fondo con overlay oscuro permanente ---- */

.service-card--photo {
  position: relative;
  min-height: 380px;
  background: var(--surface);
  transition: transform 0.30s cubic-bezier(0.34, 1.36, 0.64, 1), box-shadow 0.22s;
  will-change: transform;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.service-card--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2.5px solid transparent;
  border-radius: 10px;
  transition: border-color 0.32s ease, box-shadow 0.32s ease;
  z-index: 20;
  pointer-events: none;
}

.service-card--photo:hover {
  transform: scale(1.08);
  z-index: 10;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.service-card--photo:hover::after {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.07);
}

.service-card--photo:hover .svc-bg {
  transform: scale(1.05);
}

.svc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 1;
  transition: background 0.35s ease;
}

.service-card--photo:hover .svc-overlay {
  background: rgba(0, 0, 0, 0);
}

.service-card--photo .card-body {
  position: relative;
  z-index: 2;
}

.service-card--photo .card-num {
  color: var(--g2);
}

.service-card--photo h3 {
  color: var(--white);
}

.service-card--photo p {
  color: var(--g1);
}

/* ---- CASOS â€” texto intro ---- */

.casos-intro {
  color: var(--g1);
  font-size: 1.04rem;
  line-height: 1.72;
  max-width: 68ch;
  margin-bottom: 0;
}

/* ---- CASOS STRIP ---- */

.casos-strip-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 52px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 2px 0;
  box-sizing: border-box;
  background: #fff;
}

.casos-strip-outer {
  flex: 1;
  overflow-x: clip;
  overflow-y: visible;
  padding: 0;
}

.casos-strip {
  display: flex;
  gap: 12px;
  will-change: transform;
}

.caso-card {
  flex: 0 0 calc(19vw - 12px);
  min-width: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  position: relative;
  transition: transform 0.30s cubic-bezier(0.34, 1.36, 0.64, 1), box-shadow 0.25s ease;
  will-change: transform;
}

.caso-card:hover {
  transform: scale(1.09) translateY(-8px);
  z-index: 5;
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.80), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.caso-card-img-wrap {
  width: 100%;
  height: clamp(280px, 28vw, 430px);
  overflow: hidden;
}

.caso-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease, opacity 0.22s ease;
}

/* sin zoom de foto en hover — la tarjeta avanza entera */

.caso-card-info {
  padding: 11px 13px 14px;
}

.caso-card-venue {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 3px;
}

.caso-card-desc {
  display: block;
  font-size: 0.70rem;
  color: var(--g2);
  line-height: 1.35;
}

.casos-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, opacity 0.15s;
  padding: 0;
}
.casos-arrow--prev { left: 16px; }
.casos-arrow--next { right: 16px; }

.casos-arrow:hover:not(:disabled) {
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.25);
}

.casos-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

/* ---- CASO MODAL ---- */

.caso-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.caso-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.caso-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
}

.caso-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.15s;
  padding: 4px 10px;
  z-index: 10;
  font-family: inherit;
}

.caso-modal-close:hover { opacity: 1; }

.caso-modal-frame {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1100px;
  width: 100%;
}

.caso-modal-media-wrap {
  flex: 1;
  max-height: 74vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.caso-modal-media-wrap img,
.caso-modal-media-wrap video {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  display: block;
}

.caso-modal-arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  padding: 0;
}

.caso-modal-arrow:hover { background: rgba(255, 255, 255, 0.22); }

.caso-modal-footer {
  position: relative;
  z-index: 5;
  margin-top: 18px;
  text-align: center;
}

.caso-modal-counter {
  font-size: 0.72rem;
  color: var(--g2);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.caso-modal-venue {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.caso-modal-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--g2);
  line-height: 1.5;
}

/* ---- PACK MODAL ---- */

.pack-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9200;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  backdrop-filter: blur(6px);
}

.pack-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.pack-modal-inner {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 56px 52px 48px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.28s cubic-bezier(0.34, 1.36, 0.64, 1);
}

.pack-modal.is-open .pack-modal-inner {
  transform: scale(1) translateY(0);
}

.pack-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--g2);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.15s;
}

.pack-modal-close:hover {
  color: var(--white);
}

.pack-modal-price {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}

.pack-modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.15;
}

.pack-modal-desc {
  font-size: 1.15rem;
  color: var(--g1);
  line-height: 1.65;
  margin-bottom: 36px;
}

.pack-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  height: 56px;
  background: #25d366;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
}

.pack-modal-cta:hover {
  background: #1ebe5d;
  transform: scale(1.04);
}

.pack-modal-note {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--g2);
  opacity: 0.6;
}

/* ---- PACKS â€” 5 cards iguales ---- */

.pricing-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.pack-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--g1);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  width: 100%;
  flex-shrink: 0;
}

.pack-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ---- Overrides section-light para componentes especÃ­ficos ---- */

/* QuiÃ©nes somos en blanco */
.section-light .about-text p {
  color: rgba(0, 0, 0, 0.68);
}

/* Packs en blanco */
.section-light .pricing-range {
  color: var(--black);
}

/* Dark cards inside white section — keep button white */
.section-light .pricing-card .pack-cta {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--g1);
}

.section-light .pricing-card .pack-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* When card itself flips to white on hover, button goes dark */
.section-light .pricing-card:hover .pack-cta {
  border-color: rgba(0, 0, 0, 0.22);
  color: rgba(0, 0, 0, 0.72);
}

.section-light .pricing-card:hover .pack-cta:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}


/* ---- RESPONSIVE â€” adiciones ---- */

@media (max-width: 980px) {
  .venue-item--photo {
    height: 200px;
  }

  .casos-strip-wrap {
    gap: 6px;
  }

  .pricing-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .service-card--photo {
    min-height: 300px;
  }

  .pricing-grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .caso-card {
    flex: 0 0 calc(31vw - 12px);
  }

  .casos-arrow {
    width: 36px;
    height: 36px;
  }

  .caso-modal-frame {
    gap: 8px;
  }

  .caso-modal-arrow {
    width: 36px;
    height: 36px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .diff-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  }

  .diff-item:last-child {
    border-bottom: none;
  }
}

/* ---- CASOS LIGHTBOX (click card → full screen, click to close) ---- */

.casos-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 9100;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.casos-lightbox.active { display: flex; }
.casos-lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 6px;
  pointer-events: none;
}
.casos-lightbox video {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 6px;
}

/* ---- LIGHTBOX ---- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
  display: block;
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.15s;
  padding: 4px 8px;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-frame {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lightbox-prev,
.lightbox-next {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.15s;
  padding: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ---- SERVICE MODAL ---- */

.svc-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.svc-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.svc-modal-inner {
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1056px;
  width: 100%;
  max-height: 88vh;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.24s ease;
}

.svc-modal.active .svc-modal-inner {
  transform: scale(1) translateY(0);
}

.svc-modal-photo {
  position: relative;
  overflow: hidden;
  min-height: 408px;
}

.svc-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-modal-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  overflow-y: auto;
}

.svc-modal-num {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 14px;
}

.svc-modal-title {
  font-size: 1.76rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.svc-modal-desc {
  font-size: 1.24rem;
  line-height: 1.78;
  color: var(--g1);
  margin-bottom: 32px;
}

.svc-modal-cta {
  align-self: flex-start;
}

.svc-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s;
  padding: 2px 9px 4px;
  border-radius: 50%;
  z-index: 10;
}

.svc-modal-close:hover {
  opacity: 1;
}

.svc-modal-prev,
.svc-modal-next {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.15s;
  padding: 0;
  z-index: 10;
}

.svc-modal-prev:hover,
.svc-modal-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 800px) {
  .svc-modal-prev,
  .svc-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .svc-modal-prev { left: 10px; }
  .svc-modal-next { right: 10px; }
}

.service-card--photo,
.venue-item--photo {
  cursor: pointer;
}

@media (max-width: 640px) {
  .svc-modal-inner {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }

  .svc-modal-photo {
    min-height: 200px;
    max-height: 220px;
  }

  .svc-modal-body {
    padding: 28px 24px;
  }
}

/* ---- CHAT WIDGET ---- */

#chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  background: var(--surface-2);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#chat-toggle:hover {
  transform: translateY(-2px);
  background: var(--surface);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.65);
}

#chat-panel {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 9400;
  width: 340px;
  max-height: 520px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.60);
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.26s cubic-bezier(0.34, 1.36, 0.64, 1), opacity 0.20s ease;
}

#chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.chat-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.chat-subtitle {
  font-size: 0.72rem;
  color: var(--g2);
}

.chat-close {
  background: none;
  border: none;
  color: var(--g2);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
  transition: color 0.15s;
}

.chat-close:hover {
  color: var(--white);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--surface-2) transparent;
}

.chat-msg {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
  animation: msgIn 0.22s ease;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot {
  background: var(--surface-2);
  color: var(--white);
  border-bottom-left-radius: 3px;
  align-self: flex-start;
}

.chat-msg.user {
  background: var(--white);
  color: var(--black);
  border-bottom-right-radius: 3px;
  align-self: flex-end;
  font-weight: 500;
}

.chat-options-wrap {
  padding: 10px 14px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  flex-shrink: 0;
  border-top: 1px solid var(--line-faint);
}

.chat-opt {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--white);
  border-radius: 20px;
  padding: 6px 13px;
  font-size: 0.8rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.chat-opt:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.chat-input-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.chat-text-input {
  flex: 1;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.15s;
}

.chat-text-input:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

.chat-text-submit {
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.15s;
}

.chat-text-submit:hover {
  opacity: 0.82;
}

.chat-wa-btn {
  display: block;
  width: 100%;
  background: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.15s;
}

.chat-wa-btn:hover {
  opacity: 0.88;
}

@media (max-width: 480px) {
  #chat-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 88px;
  }
}

