:root {
  --primary: #E41B23;
  --secondary: #0055D4;
  --dark: #014FA1;
  --dark-2: #013b7a;
  --light: #ffffff;
  --yellow: #FFD700;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --text: #222222;
  --text-muted: #666666;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

h1,
h2,
h3 {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: .75rem;
}

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

.section {
  padding: 90px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-divider {
  width: 70%;
  height: 2px;
  background: var(--gray-mid);
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-pill {
  border-radius: 100px;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
}

.btn-primary:hover {
  background: #c0141b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 27, 35, .35);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--light);
}

.btn-secondary:hover {
  background: #0044aa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 85, 212, .35);
}

.btn-outline {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.btn-outline:hover {
  background: var(--light);
  color: var(--dark);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--light);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ===== HEADER ===== */
.main-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  padding: 12px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hamburger */
.menu-toggle {
  width: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  justify-self: start;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: background 0.2s;
}

.menu-toggle:hover span {
  background: var(--yellow);
}

/* Logo centered with overflow effect */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 70px;
  /* Base height to maintain header structure */
}

.logo {
  height: 160px;
  /* Triple the original size roughly */
  width: auto;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%);
  /* Adjusted to lower it further */
  margin-top: 5px;
  /* Added 'air' at the top as requested */
  transition: transform 0.3s ease, filter 0.3s ease;
  z-index: 250;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.35));
}

.logo:hover {
  transform: translate(-50%, -35%) scale(1.05);
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.45));
}

/* Actions */
.header-actions {
  justify-self: end;
}

/* ===== SIDE MENU ===== */
.side-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: var(--dark);
  color: var(--light);
  z-index: 1001;
  padding: 60px 30px 40px;
  transition: left 0.35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
}

.side-menu.active {
  left: 0;
}

.side-menu-logo {
  text-align: center;
}

.side-logo {
  height: 70px;
  margin: 0 auto;
  object-fit: contain;
}

.side-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-menu ul li a {
  display: block;
  padding: 12px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.side-menu ul li a:hover {
  background: var(--primary);
  color: var(--light);
}

.close-menu {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.close-menu:hover {
  opacity: 1;
  color: var(--yellow);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  background-image: url('img_show/PUBLICIDAD10.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1, 79, 161, 0.85) 0%, rgba(0, 85, 212, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--light);
  padding: 40px 24px;
  max-width: 900px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, .5);
  margin-bottom: 20px;
  color: var(--light);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

/* ===== NOSOTROS ===== */
.nosotros-section {
  background: var(--light);
  text-align: center;
}

.nosotros-section h2 {
  color: var(--dark);
}

.section-desc {
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0 auto 50px;
  color: var(--text-muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.why-card {
  padding: 35px 25px;
  background: var(--gray-light);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

@keyframes floatEmoji {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}

.page-index .why-icon,
.page-index .service-icon,
.page-index .promo-emoji {
  display: inline-block;
  animation: floatEmoji 3s ease-in-out infinite;
}

.why-card h3 {
  color: var(--secondary);
  font-size: 1rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}


/* ===== SERVICIOS ===== */
.servicios-section {
  background: var(--light);
  text-align: center;
}

.servicios-section h2 {
  color: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  padding: 25px 15px;
  background: var(--gray-light);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary);
}

.service-icon {
  font-size: 3rem;
  line-height: 1;
}

.service-card h3 {
  color: var(--text);
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
}

/* ===== SLIDER CIRCULAR ===== */
.slider-section {
  padding: 60px 0;
  background: var(--gray-light);
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.slider-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding: 20px 10px;
  cursor: grab;
}

.slider-container:active {
  cursor: grabbing;
}

.slider-container::-webkit-scrollbar {
  display: none;
}

.slider-item {
  flex: 0 0 230px;
  scroll-snap-align: center;
}

.slider-img {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--secondary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: block;
}

.slider-img:hover {
  transform: scale(1.06);
  border-color: var(--primary);
  box-shadow: 0 14px 35px rgba(228, 27, 35, .3);
}

.slider-btn {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--light);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.slider-btn:hover {
  background: var(--primary);
  transform: scale(1.1);
}

/* ===== PROMOCIONES ===== */
.promociones-section {
  background: var(--light);
  text-align: center;
}

.promociones-section h2 {
  color: var(--dark);
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.promo-card {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.promo-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(228, 27, 35, .15);
}

.promo-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--primary);
  color: var(--light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}

.promo-emoji {
  font-size: 3rem;
}

.promo-card h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-top: 6px;
}

.promo-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.promo-includes {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 14px 18px;
}

.promo-includes strong {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.promo-includes ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promo-includes ul li {
  font-size: 0.9rem;
}

/* Footer del promo card: se empuja al fondo */
.promo-footer {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promo-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.promo-price span {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.7;
}

.promo-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== REVIEWS SLIDER ===== */
.reviews-section {
  background: var(--dark);
  color: var(--light);
  text-align: center;
  overflow: hidden;
}

.reviews-section h2 {
  color: var(--light);
}

.reviews-section .section-label {
  color: var(--yellow);
}

.reviews-section .section-desc {
  color: rgba(255, 255, 255, .7);
}

.reviews-slider-wrapper {
  overflow: hidden;
  margin-top: 50px;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
}

.review-card {
  flex: 0 0 calc(33.33% - 16px);
  background: var(--dark-2);
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid rgba(255, 255, 255, .08);
  text-align: left;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: var(--primary);
}

.stars {
  color: var(--yellow);
  font-size: 1.3rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 16px;
  line-height: 1.7;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.reviews-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}

.reviews-dots .dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ===== CONTACTO ===== */
.contacto-section {
  background: var(--gray-light);
}

.contacto-section h2 {
  color: var(--dark);
  text-align: center;
}

.contacto-section .section-label {
  display: block;
  text-align: center;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}

.contact-info {
  text-align: left;
}

.contact-info h3 {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.info-list {
  list-style: none;
  /* Quita los puntitos de la lista */
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}

.info-list li {
  display: flex;
  /* Alinea icono y texto en una fila */
  align-items: flex-start;
  /* Alinea el icono con la primera línea de texto */
  margin-bottom: 20px;
  /* Espacio entre cada sección (teléfono, dirección, etc) */
}

.info-icon {
  font-size: 24px;
  /* Tamaño del icono */
  min-width: 40px;
  /* Ancho fijo para que todos los textos empiecen igual */
  display: flex;
  justify-content: center;
  /* Centra el icono horizontalmente en su espacio */
  margin-right: 15px;
  /* El espacio exacto entre el icono y la línea azul que dibujaste */
}

.info-list div {
  display: flex;
  flex-direction: column;
  /* Apila el título y el dato (ej: 'WhatsApp' arriba de '55...') */
}

.info-list strong {
  display: block;
  text-transform: uppercase;
  /* Para que coincida con tu imagen */
  font-size: 0.9rem;
  color: #666;
  /* Ajusta el color a tu gusto */
  margin-bottom: 4px;
}

.info-list a {
  text-decoration: none;
  color: #0056b3;
  /* El color azul de tus números */
  font-weight: bold;
}

.info-list a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form-container {
  background: var(--light);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.25s;
  background: var(--light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .7);
  padding: 50px 24px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 70px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-whatsapp:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .55);
}

/* ===== PAGE HERO (para show.html e inflables.html) ===== */
.page-hero {
  background: var(--secondary);
  background-image: url('img_show/PUBLICIDAD4.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  color: var(--light);
  padding: 120px 40px;
  text-align: center;
}

.page-hero h2 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  color: var(--light);
  text-shadow: 0 3px 15px rgba(0, 0, 0, .5);
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 36px;
  opacity: 0.9;
}

/* ===== PACKAGES (show.html) ===== */
.packages-section {
  background: var(--gray-light);
}

.packages-section h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 50px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.package-card {
  background: var(--light);
  border-radius: 20px;
  padding: 40px 32px;
  border: 2px solid transparent;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.package-card:hover {
  border-color: var(--secondary);
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 85, 212, .15);
}

.package-card-featured {
  border-color: var(--secondary);
  box-shadow: 0 0 0 1px var(--secondary);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--secondary);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}

.package-card-top {
  flex: 1;
}

.package-card-top h3 {
  color: var(--secondary);
  margin-bottom: 14px;
}

.package-card-top p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.package-card-top ul {
  margin: 14px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.package-card-top ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.package-card-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-mid);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.show-info-section {
  background: var(--light);
}

.show-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.show-text h3 {
  color: var(--secondary);
  margin-bottom: 16px;
}

.show-text p {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

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

.show-gallery img {
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.show-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

/* ===== INFLABLES ===== */
.inflables-section {
  background: var(--gray-light);
}

.inflables-section h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 50px;
}

.inflables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.inflable-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.inflable-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(228, 27, 35, .18);
}

/* Photo wrapper with zoom overlay */
.inflable-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--gray-light);
  cursor: zoom-in;
}

.inflable-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.inflable-card:hover .inflable-photo {
  transform: scale(1.06);
}

.inflable-zoom-hint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.3s, color 0.3s;
}

.inflable-card:hover .inflable-zoom-hint {
  background: rgba(0, 0, 0, 0.35);
  color: white;
}

.inflable-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.inflable-card-body h3 {
  min-height: 2.4rem;
  /* Ensure 2 lines of space for titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

.inflable-card h3 {
  color: var(--dark);
  font-size: 1rem;
  margin: 0;
}

.inflable-size {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
  text-transform: none;
  /* Avoid all caps for longer descriptions */
  letter-spacing: normal;
  flex-grow: 1;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inflable-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
  margin-top: auto;
  line-height: 1.1;
}

.inflable-includes {
  text-align: left;
  width: 100%;
  background: var(--gray-light);
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.inflable-includes strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary);
  margin-bottom: 8px;
}

.inflable-includes ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.inflable-includes ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.inflable-includes ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.inflable-card-body .btn {
  margin-top: auto;
  width: 100%;
}

.inflable-price+.btn {
  margin-top: 0;
  /* Don't add extra margin if price already has it */
}

.inflable-icon {
  font-size: 4rem;
  padding: 30px 0 16px;
  background: var(--gray-light);
  display: block;
  text-align: center;
}

/* ===== MAPA ===== */
.map-section {
  background: var(--light);
}

.map-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85);
}

.map-marker-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -140%);
  background: var(--dark);
  color: var(--light);
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
  pointer-events: none;
  animation: pulse-marker 2s infinite;
}

.map-marker-label::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--dark);
}

@keyframes pulse-marker {

  0%,
  100% {
    transform: translate(-50%, -140%) scale(1);
  }

  50% {
    transform: translate(-50%, -140%) scale(1.05);
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1999;
  display: none;
}

.lightbox-overlay.active {
  display: block;
}

.lightbox-content {
  position: relative;
  z-index: 2001;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 80vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2002;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: white;
  font-size: 1.6rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: var(--primary);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2002;
  background: rgba(255, 255, 255, .15);
  border: none;
  color: white;
  font-size: 1.8rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.lightbox-nav:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2002;
  background: rgba(0, 0, 0, .6);
  color: white;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Inflables lightbox: cap at 2048×2048, never upscale */
.inflable-lb-content img {
  max-width: min(2048px, 90vw);
  max-height: min(2048px, 88vh);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
  display: block;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .show-layout {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .header-actions {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .header-container {
    grid-template-columns: 48px 1fr 48px;
  }

  .logo {
    height: 110px;
    /* Adjusted for mobile */
    transform: translate(-50%, -20%);
    margin-top: -15px;
  }

  .logo:hover {
    transform: translate(-50%, -33%) scale(1.03);
  }

  .contact-form-container {
    padding: 28px 20px;
  }
}

/* ===== LISTA DE SERVICIOS (servicios.html) ===== */
.servicios-list-section {
  background: var(--gray-light);
}

.servicios-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .servicios-list-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.servicio-list-card {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.servicio-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(228, 27, 35, .15);
  border-color: var(--primary);
}

.servicio-list-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.servicio-list-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.servicio-list-body h3 {
  color: var(--secondary);
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.servicio-list-body p {
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.servicio-list-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
}