/* ==========================================================================
   LOS MONTAÑEROS - SITIO OFICIAL
   Diseño Moderno, Animaciones Interactivas y Fichas Destacadas
   ========================================================================== */

:root {
  /* Tipografía */
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-hand: 'Caveat', cursive;

  /* Paleta de Colores Oficial */
  --brand-yellow: #ffc700;
  --brand-yellow-hover: #e5b300;
  --brand-yellow-light: #fff5cc;
  --brand-blue: #0084f6;
  --brand-blue-hover: #006ecf;
  --brand-coffee: #382014;
  --brand-coffee-light: #4e2f1f;
  --brand-dark: #121c27;
  --brand-dark-footer: #101720;

  --text-dark: #14202e;
  --text-muted: #5a6b7e;
  --text-light: #ffffff;

  --wa-green: #25d366;
  --wa-green-hover: #1fb855;

  /* Bordes, Sombras y Transiciones */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.15);
  --shadow-card-hover: 0 22px 45px rgba(0, 0, 0, 0.22);

  --transition-normal: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset y Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  background-color: #f7f9fa;
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ==========================================================================
   BARRA DE NAVEGACIÓN SUPERIOR (AMARILLA)
   ========================================================================== */
.main-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #E4121F;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
}

.main-navbar.scrolled {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
  background-color: #0080d8;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}

/* Logo */
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.brand-link:hover {
  transform: scale(1.04);
}

.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* Enlaces del Menú */
.nav-menu {
  margin-left: 32px;
  margin-right: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-item {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  color: #ffffff;
  position: relative;
  padding: 6px 2px;
  transition: var(--transition-normal);
}

.nav-item:hover {
  color: #ffffff;
  opacity: 0.9;
  transform: translateY(-2px);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 3px;
  background-color: #ffe400;
  border-radius: 4px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-item:hover::after,
.nav-item.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Acciones y Redes */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  font-size: 1.25rem;
  border-radius: var(--radius-full);
  transition: var(--transition-bounce);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.15);
  color: #E4121F;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-toggle-btn {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION (BANNER CON CARICATURA Y PAISAJE)
   ========================================================================== */
.hero-section {
  width: 100%;
  background-color: #eef2f5;
  overflow: hidden;
  position: relative;
  padding: 24px 20px 28px;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.05);
}

.hero-image-frame {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(18, 28, 39, 0.12);
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 28px;
  animation: heroFadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes heroFadeIn {
  0% {
    opacity: 0.4;
    transform: scale(1.02);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pills flotantes interactivos sobre el hero */
.hero-floating-pills {
  position: absolute;
  bottom: 24px;
  left: 36px;
  display: flex;
  gap: 14px;
  z-index: 10;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  color: #1b2635;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: var(--transition-bounce);
  animation: floatBounce 4s ease-in-out infinite;
}

.hero-pill-badge:nth-child(2) {
  animation-delay: 2s;
}

.hero-pill-badge:hover {
  transform: translateY(-5px) scale(1.05);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-pill-badge .pill-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: #ff3b30;
  animation: pulseDot 1.6s infinite;
}

.hero-pill-badge .pill-dot.green {
  background-color: #34c759;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.6;
  }
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ==========================================================================
   SECCIÓN DE LAS 3 FICHAS ANIMADAS (CONTACTAR, RESTAURANTES, CAFE VALDO)
   ========================================================================== */
.fichas-section {
  padding: 60px 0 70px;
  background-color: #ffffff;
  background-image: url('imagenes/fondo1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.fichas-header {
  margin-bottom: 40px;
}

.tag-pill {
  display: inline-block;
  background-color: var(--brand-yellow-light);
  color: #8c5b00;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.fichas-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.3rem;
  color: #14202e;
  margin-bottom: 10px;
}

.fichas-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

/* Grid de las 3 Fichas */
.fichas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.ficha-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.ficha-wrapper .ficha-card {
  flex: 1;
}

/* Textos Visibles / Botones Debajo de Cada Ficha */
.ficha-bottom-label {
  width: 100%;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-bounce);
  user-select: none;
  border: 2px solid transparent;
  outline: none;
}

.ficha-label-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #14202e;
}

.ficha-label-icon {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.ficha-bottom-label:hover,
.ficha-bottom-label:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.ficha-bottom-label:hover .ficha-label-icon,
.ficha-bottom-label:focus-visible .ficha-label-icon {
  transform: translateX(5px);
}

/* Colores temáticos */
.label-yellow {
  border-color: rgba(255, 199, 0, 0.45);
}
.label-yellow .ficha-label-icon {
  color: #d49b00;
}
.label-yellow:hover,
.label-yellow:focus-visible {
  border-color: var(--brand-yellow);
  background-color: #fffef8;
}

.label-blue {
  border-color: rgba(0, 132, 246, 0.4);
}
.label-blue .ficha-label-icon {
  color: var(--brand-blue);
}
.label-blue:hover,
.label-blue:focus-visible {
  border-color: var(--brand-blue);
  background-color: #f6faff;
}

.label-brown {
  border-color: rgba(139, 69, 19, 0.35);
}
.label-brown .ficha-label-icon {
  color: #793e10;
}
.label-brown:hover,
.label-brown:focus-visible {
  border-color: #793e10;
  background-color: #fdfaf7;
}

/* Cada Ficha Card */
.ficha-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  transition: var(--transition-bounce);
  outline: none;
  background: #ffffff;
  user-select: none;
  transform: translateY(0);
}

.ficha-card:focus-visible {
  box-shadow: 0 0 0 4px var(--brand-yellow), 0 16px 40px rgba(0, 0, 0, 0.2);
}

.ficha-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ficha-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.ficha-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Botón flecha interactivo animado sobre la ficha */
.interactive-arrow-btn {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background-color: #131c26;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: var(--transition-bounce);
  z-index: 5;
}

/* Anillo de pulso continuo en el botón */
.interactive-arrow-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: rippleRing 2.2s infinite;
}

@keyframes rippleRing {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Efecto Shimmer de luz */
.card-shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: 0.75s;
}

/* Tooltip overlay con llamada a la acción */
.ficha-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition-normal);
  pointer-events: none;
  z-index: 6;
}

.hover-tip {
  background: rgba(18, 28, 39, 0.94);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ANIMACIONES AL HACER HOVER EN LAS FICHAS */
.ficha-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
}

.ficha-card:hover .ficha-img {
  transform: scale(1.05);
}

.ficha-card:hover .card-shimmer {
  left: 170%;
}

.ficha-card:hover .interactive-arrow-btn {
  transform: translateX(-50%) scale(1.18);
  background-color: #000000;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.ficha-card:hover .interactive-arrow-btn i {
  animation: arrowBounce 0.8s ease infinite alternate;
}

.ficha-card:hover .ficha-hover-overlay {
  opacity: 1;
  transform: translateY(-80px);
}

@keyframes arrowBounce {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(6px);
  }
}

/* Colores de resplandor para cada ficha */
.ficha-yellow:hover {
  box-shadow: 0 20px 45px rgba(255, 199, 0, 0.35);
}

.ficha-blue:hover {
  box-shadow: 0 20px 45px rgba(0, 132, 246, 0.35);
}

.ficha-brown:hover {
  box-shadow: 0 20px 45px rgba(56, 32, 20, 0.35);
}

/* ==========================================================================
   SECCIÓN: GALERÍA DE IMÁGENES (DESPLAZAMIENTO A LA IZQUIERDA)
   ========================================================================== */
.gallery-section {
  padding: 50px 0 65px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #f4f6f8 100%);
  position: relative;
  overflow: hidden;
}

.gallery-header {
  margin-bottom: 28px;
}

.gallery-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.25rem;
  color: #14202e;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.gallery-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Viewport del Carrusel Continuo */
.gallery-marquee-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 14px 0 22px;
  user-select: none;
  cursor: grab;
}

.gallery-marquee-viewport:active {
  cursor: grabbing;
}

/* Gradientes en bordes para desvanecimiento lateral elegante */
.gallery-edge-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.gallery-edge-gradient.edge-left {
  left: 0;
  background: linear-gradient(to right, #f8fafb 0%, rgba(248, 250, 251, 0) 100%);
}

.gallery-edge-gradient.edge-right {
  right: 0;
  background: linear-gradient(to left, #f8fafb 0%, rgba(248, 250, 251, 0) 100%);
}

/* Track Animado que se Desplaza a la Izquierda */
.gallery-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marqueeToLeft 34s linear infinite;
  will-change: transform;
}

/* Pausa automática al pasar el cursor o cuando se activa botón pausa */
.gallery-marquee-viewport:hover .gallery-track,
.gallery-track.is-paused {
  animation-play-state: paused !important;
}

@keyframes marqueeToLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Grupo de tarjetas de la galería */
.gallery-group {
  display: flex;
  gap: 22px;
  padding-right: 22px;
}

/* Tarjeta individual de imagen */
.gallery-card {
  position: relative;
  width: 330px;
  height: 250px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background-color: #151f2b;
  border: 2px solid rgba(255, 199, 0, 0.28);
  box-shadow: 0 10px 24px rgba(18, 28, 39, 0.08);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
  outline: none;
}

.gallery-card:focus-visible {
  box-shadow: 0 0 0 4px var(--brand-yellow), 0 16px 36px rgba(0, 0, 0, 0.25);
  border-color: var(--brand-yellow);
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 20px 42px rgba(18, 28, 39, 0.22), 0 0 0 3px var(--brand-yellow);
  border-color: var(--brand-yellow);
}

.gallery-card-media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
  display: block;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

/* Overlay semitransparente con degradado */
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(18, 28, 39, 0.05) 0%,
      rgba(18, 28, 39, 0.25) 45%,
      rgba(14, 22, 32, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  color: #ffffff;
  pointer-events: none;
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--brand-yellow);
  margin-bottom: 4px;
}

.gallery-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Badge de ampliación flotante */
.gallery-zoom-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--brand-yellow);
  color: #121c27;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.6) rotate(-15deg);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
}

.gallery-card:hover .gallery-zoom-badge {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Barra inferior de controles */
.gallery-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 14px auto 0;
  padding: 0 24px;
}

.gallery-controls-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gallery-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #dce2e8;
  color: #1a2533;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  cursor: pointer;
}

.gallery-pill-btn:hover {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: #121c27;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 199, 0, 0.35);
}

.gallery-pill-btn:active {
  transform: translateY(0);
}

.gallery-hint-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.gallery-hint-text i {
  color: var(--brand-yellow-hover);
}

/* ==========================================================================
   MODAL LIGHTBOX (VISOR DE FOTOS AMPLIADO)
   ========================================================================== */
.gallery-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 24, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0.35s ease;
  padding: 30px;
}

.gallery-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-dialog {
  position: relative;
  max-width: 1050px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-lightbox-overlay.active .lightbox-dialog {
  transform: scale(1);
}

/* Botón cerrar */
.lightbox-close-btn {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: #ffffff;
  color: #121c27;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: var(--transition-bounce);
  z-index: 20;
}

.lightbox-close-btn:hover {
  background: var(--brand-yellow);
  transform: scale(1.12) rotate(90deg);
}

/* Botones de navegación lateral */
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  z-index: 15;
}

.lightbox-nav-btn.prev-btn {
  left: -26px;
}

.lightbox-nav-btn.next-btn {
  right: -26px;
}

.lightbox-nav-btn:hover {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: #121c27;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 25px rgba(255, 199, 0, 0.4);
}

/* Contenedor central de la foto */
.lightbox-content-box {
  background: #141f2d;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 199, 0, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.lightbox-media-wrapper {
  position: relative;
  width: 100%;
  min-height: 280px;
  max-height: 72vh;
  background-color: #0b1118;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-main-img {
  max-height: 72vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.lightbox-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--brand-yellow);
  font-size: 2.2rem;
  display: none;
}

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

/* Barra inferior del lightbox con metadata */
.lightbox-info-row {
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #101823;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-category-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--brand-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.lightbox-caption {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.lightbox-counter-pill {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

/* Adaptación responsive para la galería y el visor */
@media (max-width: 992px) {
  .gallery-card {
    width: 290px;
    height: 220px;
  }

  .gallery-title {
    font-size: 1.95rem;
  }

  .lightbox-nav-btn.prev-btn {
    left: 12px;
  }

  .lightbox-nav-btn.next-btn {
    right: 12px;
  }

  .lightbox-close-btn {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 640px) {
  .gallery-section {
    padding: 38px 0 45px;
  }

  .gallery-card {
    width: 250px;
    height: 190px;
    border-radius: 16px;
  }

  .gallery-card-title {
    font-size: 0.98rem;
  }

  .gallery-tag {
    font-size: 0.65rem;
  }

  .gallery-footer-bar {
    justify-content: center;
  }

  .gallery-hint-text {
    font-size: 0.78rem;
    text-align: center;
  }

  .lightbox-info-row {
    padding: 12px 16px;
  }

  .lightbox-caption {
    font-size: 1.05rem;
  }

  .lightbox-main-img {
    max-height: 60vh;
  }
}

/* ==========================================================================
   SECCIÓN "MÁS QUE UN RESTAURANTE..."
   ========================================================================== */
.about-section {
  padding: 80px 0 90px;
  background-color: #fbfbfb;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  align-items: center;
}

/* Columna Izquierda */
.about-text-col {
  padding-right: 20px;
}

.script-title {
  font-family: var(--font-hand);
  font-size: 3.2rem;
  color: #172d4a;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.about-lead {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.6rem;
  color: #1b2635;
  margin-bottom: 20px;
}

.about-desc {
  font-size: 1.12rem;
  color: #4a5a6e;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-desc strong {
  color: #111a24;
  font-weight: 800;
}

.mascot-slogan-wrapper {
  margin-top: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.mascot-slogan-img {
  max-width: 270px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.06));
}

.mascot-slogan-wrapper:hover {
  transform: rotate(-3deg) scale(1.06);
}

/* Columna Derecha: 3 Pilares y Banner */
.about-features-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.pillars-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  transition: var(--transition-normal);
}

.pillar-item:hover {
  transform: translateY(-6px);
}

.pillar-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background-color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #141c26;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(255, 199, 0, 0.4);
  transition: var(--transition-bounce);
}

.pillar-item:hover .pillar-icon-circle {
  transform: scale(1.15) rotate(8deg);
  background-color: #ffd22e;
  box-shadow: 0 12px 26px rgba(255, 199, 0, 0.6);
}

.pillar-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.05rem;
  color: #162232;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 0.9rem;
  color: #657588;
  line-height: 1.4;
}

.pillar-divider {
  width: 1px;
  height: 80px;
  background-color: #e2e8f0;
  align-self: center;
}

/* Banner Destacado "El sabor de lo nuestro" */
.featured-banner-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  transition: var(--transition-bounce);
}

.featured-banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.featured-banner-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.featured-banner-wrapper:hover .featured-banner-img {
  transform: scale(1.03);
}

.banner-shine {
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: 0.8s;
}

.featured-banner-wrapper:hover .banner-shine {
  left: 170%;
}

/* ==========================================================================
   PIE DE PÁGINA (FOOTER OSCURO)
   ========================================================================== */
.main-footer {
  background-color: var(--brand-dark-footer);
  color: #ffffff;
  padding: 50px 0 35px;
}

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

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-bounce);
}

.footer-social-btn:hover {
  transform: translateY(-4px) scale(1.12);
  background-color: var(--brand-yellow);
  color: #121921;
  border-color: var(--brand-yellow);
  box-shadow: 0 8px 20px rgba(255, 199, 0, 0.4);
}

/* Botón Contáctanos del Footer */
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--brand-yellow);
  color: #121921;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(255, 199, 0, 0.35);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.footer-contact-btn i {
  transition: transform 0.3s ease;
}

.footer-contact-btn:hover {
  background-color: #ffd21a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 26px rgba(255, 199, 0, 0.55);
}

.footer-contact-btn:hover i {
  animation: phoneRing 0.5s ease infinite alternate;
}

@keyframes phoneRing {
  0% {
    transform: rotate(-15deg);
  }

  100% {
    transform: rotate(15deg);
  }
}

/* Fila Inferior del Footer */
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 199, 0, 0.5), transparent);
}

.footer-copy {
  font-size: 0.9rem;
  color: #8c9ba5;
  white-space: nowrap;
}

/* ==========================================================================
   MODALES INTERACTIVOS
   ========================================================================== */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 16, 24, 0.78);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.custom-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-trigger {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-normal);
}

.modal-close-trigger:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: rotate(90deg) scale(1.1);
}

.modal-header-banner {
  padding: 36px 30px 24px;
  color: #ffffff;
}

.modal-header-banner.yellow-accent {
  background: linear-gradient(135deg, #f4b400, #ff8f00);
  color: #121921;
}

.modal-header-banner.blue-accent {
  background: linear-gradient(135deg, #0076db, #004ba0);
}

.modal-header-banner.coffee-accent {
  background: linear-gradient(135deg, #442718, #20110a);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 6px;
  line-height: 1.2;
}

.modal-sub {
  font-size: 0.95rem;
  opacity: 0.9;
}

.modal-body {
  padding: 28px 30px 32px;
}

/* Opciones de WhatsApp en Modal */
.wa-action-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wa-chat-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid #e8ecf1;
  background: #fbfcfe;
  transition: var(--transition-bounce);
}

.wa-chat-option:hover {
  border-color: var(--wa-green);
  background: #f1fcf5;
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15);
}

.option-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  flex-shrink: 0;
}

.option-icon.green {
  background-color: var(--wa-green);
}

.option-icon.blue-dish {
  background-color: var(--brand-blue);
}

.option-icon.coffee {
  background-color: #6f4e37;
}

.option-icon.gold {
  background-color: #ff9800;
}

.option-info {
  flex: 1;
}

.option-main-text {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #141f2e;
  margin-bottom: 2px;
  line-height: 1.3;
}

.option-sub-text {
  font-size: 0.88rem;
  color: #5c6e82;
  line-height: 1.3;
}

.btn-call-advisor:hover {
  border-color: var(--wa-green);
  background: #f0fdf4;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}

.btn-pautar-montaneros:hover {
  border-color: #ff9800;
  background: #fffdf5;
  box-shadow: 0 10px 24px rgba(255, 152, 0, 0.24);
}

.btn-pautar-montaneros:hover .arrow-indicator {
  color: #ff9800;
}

.arrow-indicator {
  color: #b0bec5;
  transition: transform 0.2s ease;
}

.wa-chat-option:hover .arrow-indicator {
  color: var(--wa-green);
  transform: translateX(4px);
}

/* Estilos de Restaurante y Café en Modal */
.dish-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.dish-card {
  background: #f8fafc;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid #e8edf3;
}

.dish-icon {
  font-size: 1.8rem;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.dish-card h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: #172433;
  margin-bottom: 6px;
}

.dish-card p {
  font-size: 0.85rem;
  color: #5d6f82;
  line-height: 1.4;
}

.coffee-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.highlight-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.highlight-point i {
  color: #ff9800;
  font-size: 1.1rem;
  margin-top: 3px;
}

.highlight-point strong {
  display: block;
  color: #1d2b3a;
  font-size: 1rem;
  margin-bottom: 2px;
}

.highlight-point p {
  font-size: 0.9rem;
  color: #617387;
  line-height: 1.4;
}

.modal-cta-box {
  background: #f4f7fb;
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}

.modal-cta-box p {
  font-size: 0.9rem;
  color: #4b5d73;
  margin-bottom: 12px;
}

.btn-modal-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background-color: var(--wa-green);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-bounce);
}

.btn-modal-action:hover {
  background-color: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.btn-modal-action.coffee-btn {
  background: linear-gradient(135deg, #6b3e1b, #381f0d);
  box-shadow: 0 8px 22px rgba(80, 45, 18, 0.4);
}

.btn-modal-action.coffee-btn:hover {
  background: linear-gradient(135deg, #874e22, #472610);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(80, 45, 18, 0.58);
}

/* ==========================================================================
   ANIMACIONES DE SCROLL REVEAL (IntersectionObserver)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

/* ==========================================================================
   RESPONSIVIDAD MÓVIL Y TABLET
   ========================================================================== */
@media (max-width: 992px) {
  .fichas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ficha-brown,
  .ficha-wrapper.ficha-wrapper-brown {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text-col {
    padding-right: 0;
    text-align: center;
  }

  .mascot-slogan-wrapper {
    display: block;
    margin: 20px auto 0;
  }
}

@media (max-width: 768px) {
  .menu-toggle-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    margin: 0;
    background-color: #E4121F;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    gap: 18px;
  }

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

  .ficha-brown,
  .ficha-wrapper.ficha-wrapper-brown {
    grid-column: span 1;
  }

  .hero-section {
    padding: 14px 12px 20px;
  }

  .hero-image-frame {
    border-radius: 18px;
  }

  .hero-main-img {
    border-radius: 18px;
  }

  .hero-floating-pills {
    left: 16px;
    bottom: 16px;
    flex-direction: column;
    gap: 8px;
  }

  .hero-pill-badge {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .pillars-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .pillar-divider {
    display: none;
  }

  .footer-top-row {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .dish-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   MODAL DE PAUTA PUBLICITARIA, FORMULARIO Y AGENDA DE CITAS
   ========================================================================== */
.modal-card-pauta {
  max-width: 660px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-pauta-body {
  overflow-y: auto;
  padding: 24px 28px 30px;
  flex: 1;
}

/* Scrollbar moderno */
.modal-pauta-body::-webkit-scrollbar {
  width: 7px;
}

.modal-pauta-body::-webkit-scrollbar-track {
  background: #f1f4f8;
  border-radius: 10px;
}

.modal-pauta-body::-webkit-scrollbar-thumb {
  background: #ffc700;
  border-radius: 10px;
}

.modal-pauta-body::-webkit-scrollbar-thumb:hover {
  background: #e5b300;
}

/* Transiciones entre pasos */
.pauta-step-wrapper {
  display: none;
  animation: fadeInPautaStep 0.35s ease forwards;
}

.pauta-step-wrapper.active {
  display: block;
}

@keyframes fadeInPautaStep {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Video Introductorio */
.video-pauta-container {
  background: #121c27;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 199, 0, 0.25);
}

.video-top-tag {
  background: linear-gradient(90deg, #ffc700, #ff9500);
  color: #121921;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-pauta-player-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-pauta-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-pauta-note {
  font-size: 0.82rem;
  color: #a0aec0;
  padding: 8px 14px 10px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #182330;
}

.video-pauta-note i {
  color: #ffc700;
}

/* Formulario */
.form-pauta-container {
  background: #ffffff;
}

.pauta-form-intro {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf2f7;
}

.pauta-form-intro h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #14202e;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pauta-form-intro h4 i {
  color: #f4b400;
}

.pauta-form-intro p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.form-field-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.field-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #243342;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-label i {
  color: #f4b400;
}

.field-input,
.field-textarea {
  width: 100%;
  background: #fbfcfe;
  border: 1.5px solid #dce4ec;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.94rem;
  color: #1a2530;
  transition: var(--transition-normal);
}

.field-textarea {
  resize: vertical;
  min-height: 85px;
}

.field-input:focus,
.field-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #f4b400;
  box-shadow: 0 0 0 3.5px rgba(255, 199, 0, 0.2);
}

.form-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-error-text {
  display: none;
  color: #dc2626;
  font-size: 0.78rem;
  margin-top: 4px;
  font-weight: 600;
}

.form-field-group.has-error .field-error-text {
  display: block;
}

.form-field-group.has-error .field-input,
.form-field-group.has-error .field-textarea {
  border-color: #ef4444;
  background-color: #fff8f8;
}

/* Botón de acción */
.btn-pauta-action {
  width: 100%;
  background: linear-gradient(135deg, #ffc700, #f5a623);
  color: #121921;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 15px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
  transition: var(--transition-bounce);
  margin-top: 8px;
}

.btn-pauta-action:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffd024, #e5971a);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 166, 35, 0.45);
}

.btn-pauta-action:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* ================= PASO 2: AGENDA ================= */
.agenda-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.btn-back-step {
  background: none;
  border: none;
  color: #5a6b7e;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: var(--transition-normal);
}

.btn-back-step:hover {
  background: #edf2f7;
  color: #14202e;
}

.step-indicator-pill {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0084f6;
  background: #e8f4fe;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.agenda-header-box {
  margin-bottom: 20px;
}

.agenda-main-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #121c27;
  margin-bottom: 4px;
}

.agenda-personalized-greet {
  font-size: 0.9rem;
  color: #4a5568;
  margin: 0;
}

.agenda-block {
  margin-bottom: 20px;
}

.agenda-block-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.agenda-block-title i {
  color: #0084f6;
}

/* Date Chips */
.date-chips-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.date-chip {
  flex: 0 0 78px;
  background: #ffffff;
  border: 1.5px solid #dce4ec;
  border-radius: 14px;
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-bounce);
  user-select: none;
}

.date-chip:hover {
  border-color: #ffc700;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.date-chip .day-name {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #718096;
  display: block;
}

.date-chip .day-num {
  font-size: 1.45rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: #1a202c;
  display: block;
  line-height: 1.1;
  margin: 3px 0;
}

.date-chip .day-month {
  font-size: 0.72rem;
  font-weight: 600;
  color: #a0aec0;
  display: block;
  text-transform: uppercase;
}

.date-chip.selected {
  background: #ffc700;
  border-color: #d6a100;
  box-shadow: 0 8px 20px rgba(255, 199, 0, 0.42);
  transform: translateY(-3px) scale(1.02);
}

.date-chip.selected .day-name,
.date-chip.selected .day-num,
.date-chip.selected .day-month {
  color: #121c27;
}

/* Time Chips */
.time-slots-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 9px;
}

.time-chip {
  background: #ffffff;
  border: 1.5px solid #dce4ec;
  border-radius: 12px;
  padding: 10px 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2d3748;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  user-select: none;
}

.time-chip:hover {
  border-color: #0084f6;
  color: #0084f6;
  background: #f0f7ff;
}

.time-chip.selected {
  background: #121c27;
  border-color: #121c27;
  color: #ffc700;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(18, 28, 39, 0.3);
  transform: scale(1.02);
}

/* Resumen de cita seleccionada */
.selection-summary-card {
  background: #f3f8fd;
  border: 1px solid #d0e4f7;
  border-radius: 12px;
  padding: 12px 16px;
  margin: 18px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-pin-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e1effe;
  color: #0084f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.summary-pin-text .lbl {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #4a5568;
}

.summary-pin-text strong {
  display: block;
  font-size: 0.95rem;
  color: #1a202c;
}

/* ================= PASO 3: CONFIRMACIÓN ================= */
.pauta-success-screen {
  text-align: center;
  padding: 10px 6px;
}

.success-check-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 14px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  animation: pulseWaBadge 2s infinite;
}

@keyframes pulseWaBadge {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.success-screen-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #121c27;
  margin-bottom: 6px;
}

.success-screen-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 20px;
}

/* Receipt Card */
.booking-receipt-card {
  text-align: left;
  background: #fbfcfe;
  border: 1.5px dashed #cbd5e1;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 22px;
}

.receipt-header {
  font-weight: 800;
  font-size: 0.92rem;
  color: #1e293b;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.receipt-header i {
  color: #f59e0b;
}

.receipt-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.88rem;
  gap: 12px;
}

.r-label {
  color: #64748b;
  font-weight: 600;
  flex-shrink: 0;
}

.r-val {
  color: #0f172a;
  font-weight: 700;
  text-align: right;
}

.r-val.r-desc {
  font-style: italic;
  font-weight: 500;
  color: #334155;
  max-width: 320px;
  line-height: 1.35;
}

.receipt-row.highlight-row {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 6px;
  align-items: center;
}

.highlight-row .r-label {
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 6px;
}

.highlight-row .highlight-time {
  color: #92400e;
  font-size: 0.95rem;
  font-weight: 800;
}

/* Success Action Buttons */
.success-actions-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-wa-final-action {
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.98rem;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.32);
  transition: var(--transition-bounce);
}

.btn-wa-final-action:hover {
  background: #1eb857;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.42);
}

.btn-cal-final-action {
  background: #0084f6;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(0, 132, 246, 0.28);
  transition: var(--transition-bounce);
}

.btn-cal-final-action:hover {
  background: #006ecf;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-close-pauta-final {
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  transition: var(--transition-normal);
}

.btn-close-pauta-final:hover {
  color: #0f172a;
}

@media (max-width: 576px) {
  .modal-pauta-body {
    padding: 18px 16px 24px;
  }

  .form-fields-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .receipt-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .r-val {
    text-align: left;
  }

  .r-val.r-desc {
    max-width: 100%;
  }

  .receipt-row.highlight-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}


/* ==========================================================================
   SELECCIÓN DE SEDES EN RESTAURANTES (MAYORCA, POBLADO, NIQUIA, BELLO)
   ========================================================================== */
.restaurante-step {
  display: none;
  animation: fadeInPautaStep 0.3s ease forwards;
}

.restaurante-step.active {
  display: block;
}

.sedes-prompt-box {
  text-align: center;
  margin-bottom: 18px;
}

.sedes-prompt-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #121c27;
  margin-bottom: 6px;
}

.sedes-prompt-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sedes-grid-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sede-card-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fbfcfe;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: var(--transition-bounce);
  text-decoration: none;
  color: inherit;
}

.sede-card-option:hover {
  border-color: var(--wa-green);
  background: #f0fdf4;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.18);
}

.sede-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffc700, #f5a623);
  color: #121c27;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sede-text-box {
  flex: 1;
}

.sede-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #121c27;
  display: block;
}

.sede-desc {
  font-size: 0.78rem;
  color: #64748b;
  display: block;
}

.sede-wa-icon {
  color: var(--wa-green);
  font-size: 1.35rem;
  margin-left: auto;
  transition: var(--transition-normal);
}

.sede-card-option:hover .sede-wa-icon {
  transform: scale(1.15);
}

@media (max-width: 540px) {
  .sedes-grid-options {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BANNER FLOTANTE LATERAL IZQUIERDO: INVERTIR EN FRANQUICIA
   ========================================================================== */
.floating-franchise-container {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.35s ease,
    visibility 0.35s ease;
  animation: floatingBannerFloat 4.5s ease-in-out infinite;
}

@keyframes floatingBannerFloat {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(-54%);
  }
}

.floating-franchise-container:hover {
  animation-play-state: paused;
}

/* Estado Minimizado */
.floating-franchise-container.minimized {
  transform: translateY(-50%) translateX(-150%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Botón cerrar flotante */
.floating-banner-close-btn {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: #121c27;
  color: #ffffff;
  border: 2px solid var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-bounce);
}

.floating-banner-close-btn:hover {
  background: var(--brand-yellow);
  color: #121c27;
  transform: scale(1.15) rotate(90deg);
}

/* Tarjeta principal con la imagen */
.floating-banner-card {
  display: block;
  width: 175px;
  border-radius: 18px;
  overflow: hidden;
  background: #111a24;
  border: 2.5px solid var(--brand-yellow);
  box-shadow: 0 16px 36px rgba(18, 28, 39, 0.35), 0 0 20px rgba(255, 199, 0, 0.3);
  text-decoration: none;
  transition: var(--transition-bounce);
  position: relative;
}

.floating-banner-card:hover {
  transform: scale(1.05);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), 0 0 30px rgba(255, 199, 0, 0.55);
}

.floating-banner-media {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.floating-banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.floating-banner-card:hover .floating-banner-img {
  transform: scale(1.04);
}

/* Efecto Shimmer brillante que pasa por encima */
.floating-banner-shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  animation: bannerShimmerPass 5s infinite;
  pointer-events: none;
}

@keyframes bannerShimmerPass {

  0%,
  80% {
    left: -150%;
  }

  100% {
    left: 170%;
  }
}

/* Pastilla de llamada a la acción en la parte inferior */
.floating-banner-cta-pill {
  background: linear-gradient(135deg, #ff9500, #dfac04);
  color: #ffffff;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease;
}

.floating-banner-card:hover .floating-banner-cta-pill {
  background: linear-gradient(135deg, #2bf075, #15a896);
}

/* Pestaña lateral que aparece cuando se minimiza */
.floating-franchise-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  z-index: 940;
  background: #121c27;
  color: #ffffff;
  border: 2px solid var(--brand-yellow);
  border-left: none;
  border-radius: 0 14px 14px 0;
  padding: 12px 14px 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 4px 8px 22px rgba(0, 0, 0, 0.35), 0 0 12px rgba(255, 199, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.floating-franchise-tab.visible {
  transform: translateY(-50%) translateX(0);
}

.floating-franchise-tab:hover {
  background: var(--brand-yellow);
  color: #121c27;
  transform: translateY(-50%) translateX(4px);
}

.floating-franchise-tab i {
  font-size: 1.15rem;
  color: var(--brand-yellow);
}

.floating-franchise-tab:hover i {
  color: #121c27;
}

.floating-franchise-tab span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tab-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  animation: pulseDot 1.5s infinite;
}

/* Adaptación responsive */
@media (max-width: 992px) {
  .floating-banner-card {
    width: 145px;
  }

  .floating-franchise-container {
    left: 14px;
  }
}

@media (max-width: 640px) {
  .floating-banner-card {
    width: 125px;
    border-radius: 14px;
  }

  .floating-franchise-container {
    left: 8px;
    top: 60%;
  }

  .floating-banner-cta-pill {
    font-size: 0.7rem;
    padding: 6px 8px;
  }
}

/* ==========================================================================
   PÁGINA DEDICADA: FRANQUICIAS LOS MONTAÑEROS
   ========================================================================== */
.page-franquicias {
  background-color: #f7f9fa;
}

.franquicia-page-main {
  width: 100%;
  overflow-x: hidden;
}

/* ==========================================================================
   DOSSIER OFICIAL DE FRANQUICIA (PDF EN ALTA RESOLUCIÓN)
   ========================================================================== */
.dossier-section {
  width: 100%;
  background: linear-gradient(180deg, #ffc700 0%, #fff6d1 18%, #f7f9fa 100%);
  padding: 35px 0 65px;
  position: relative;
}

.dossier-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Barra superior del Dossier */
.dossier-top-bar {
  background: #121c27;
  color: #ffffff;
  border-radius: 22px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(18, 28, 39, 0.25);
  border: 2px solid rgba(255, 199, 0, 0.45);
  margin-bottom: 24px;
}

.dossier-title-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dossier-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-yellow);
  color: #121c27;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 6px 16px rgba(255, 199, 0, 0.4);
  flex-shrink: 0;
}

.dossier-meta h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.22rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
}

.dossier-meta span {
  font-size: 0.88rem;
  color: #cbd5e1;
}

.dossier-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-dossier-download {
  background: #E4121F;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-bounce);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(228, 18, 31, 0.35);
}

.btn-dossier-download:hover {
  background: #b70d18;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(228, 18, 31, 0.5);
}

.btn-dossier-booking {
  background: var(--brand-yellow);
  color: #121c27;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-bounce);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(255, 199, 0, 0.35);
}

.btn-dossier-booking:hover {
  background: #e5b300;
  color: #121c27;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 199, 0, 0.5);
}

/* Navegación rápida entre páginas */
.dossier-page-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.dossier-nav-pill {
  background: #ffffff;
  color: #14202e;
  border: 1.5px solid #e2e8f0;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dossier-nav-pill:hover {
  background: #121c27;
  color: var(--brand-yellow);
  border-color: #121c27;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(18, 28, 39, 0.15);
}

/* Hojas del Dossier */
.dossier-sheets-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.dossier-sheet-wrapper {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(18, 28, 39, 0.13);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dossier-sheet-wrapper:hover {
  box-shadow: 0 26px 65px rgba(18, 28, 39, 0.19);
  transform: translateY(-3px);
}

.dossier-sheet-header {
  background: #f8fafc;
  padding: 12px 24px;
  border-bottom: 1px solid #e9eff5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  color: #64748b;
  font-weight: 600;
}

.dossier-sheet-badge {
  background: #121c27;
  color: var(--brand-yellow);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}

.dossier-sheet-topic {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #334155;
}

.dossier-sheet-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Banner de Cierre */
.dossier-bottom-cta {
  background: #121c27;
  color: #ffffff;
  border-radius: 26px;
  padding: 42px 32px;
  text-align: center;
  margin-top: 48px;
  border: 2.5px solid var(--brand-yellow);
  box-shadow: 0 22px 55px rgba(18, 28, 39, 0.3);
  position: relative;
  overflow: hidden;
}

.dossier-bottom-cta h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.85rem;
  color: var(--brand-yellow);
  margin-bottom: 12px;
}

.dossier-bottom-cta p {
  color: #e2e8f0;
  font-size: 1.08rem;
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.dossier-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-dossier-download-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition-bounce);
}

.btn-dossier-download-secondary:hover {
  background: #ffffff;
  color: #121c27;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.scroll-to-booking-wrap {
  margin-top: -28px;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.btn-scroll-booking {
  background: #121c27;
  color: var(--brand-yellow);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 15px 34px;
  border-radius: var(--radius-full);
  border: 2.5px solid var(--brand-yellow);
  box-shadow: 0 12px 32px rgba(18, 28, 39, 0.4), 0 0 22px rgba(255, 199, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-bounce);
  text-decoration: none;
}

.btn-scroll-booking:hover {
  background: var(--brand-yellow);
  color: #121c27;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 40px rgba(18, 28, 39, 0.5), 0 0 30px rgba(255, 199, 0, 0.6);
}

.btn-scroll-booking i.fa-arrow-down {
  animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* Sección de Formulario y Agenda en Franquicias */
.franquicia-booking-section {
  padding: 60px 0 95px;
  background-color: #ffffff;
  position: relative;
}

.booking-standalone-card {
  max-width: 740px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 38px 42px;
  border: 2px solid rgba(255, 199, 0, 0.45);
  box-shadow: 0 20px 50px rgba(18, 28, 39, 0.1);
  position: relative;
}

@media (max-width: 768px) {
  .dossier-section {
    padding: 20px 0 45px;
  }

  .dossier-top-bar {
    padding: 16px 18px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .dossier-title-box {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .dossier-top-actions {
    justify-content: center;
    width: 100%;
  }

  .btn-dossier-download,
  .btn-dossier-booking {
    width: 100%;
    justify-content: center;
  }

  .dossier-nav-pill {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .dossier-sheet-wrapper {
    border-radius: 14px;
  }

  .dossier-sheet-header {
    padding: 10px 14px;
    font-size: 0.78rem;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .dossier-bottom-cta {
    padding: 28px 18px;
  }

  .dossier-bottom-cta h3 {
    font-size: 1.45rem;
  }

  .btn-scroll-booking {
    font-size: 0.92rem;
    padding: 12px 22px;
    text-align: center;
  }

  .booking-standalone-card {
    padding: 24px 18px;
    border-radius: 20px;
  }
}

/* ==========================================================================
   PÁGINA NOSOTROS (MEDIA KIT)
   ========================================================================== */
.page-nosotros {
  background-color: #f7f9fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nosotros-main-content {
  flex: 1;
  width: 100%;
  padding: 30px 16px 60px;
}

.nosotros-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 16px;
}

.nosotros-media-wrapper {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-media-wrapper:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.nosotros-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.nosotros-floating-action {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 12px;
}

.btn-open-hd {
  background: #121c27;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: var(--transition-bounce);
  text-decoration: none;
}

.btn-open-hd:hover {
  background: #E4121F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(228, 18, 31, 0.35);
}

@media (max-width: 768px) {
  .nosotros-main-content {
    padding: 18px 10px 40px;
  }

  .nosotros-media-wrapper {
    border-radius: 12px;
  }

  .btn-open-hd {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}