:root {
  --primary: #D35400;
  /* Naranja Terracota (Cálido y elegante) */
  --primary-light: #E67E22;
  --secondary: #2C3E50;
  /* Azul Marino oscuro (Profesional) */
  --accent: #F39C12;
  /* Dorado/Mostaza */
  --bg-light: #FDFBF7;
  /* Crema muy sutil */
  --text-main: #333333;
  --text-muted: #666666;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 1.5rem;
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.1rem; /* evita que el brand se vaya a dos lineas junto al toggler */
  }
}

.nav-link {
  font-weight: 600;
  color: var(--secondary) !important;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.5)), url('img/fondo.jpg') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  padding-top: 80px;
  /* compensa el navbar fijo */
  padding-bottom: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* Responsive hero */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-top: 120px;  /* navbar en movil ocupa ~110px (2 filas) */
    padding-bottom: 3rem;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-top: 0.5rem;
  }

  .hero .lead {
    font-size: 1rem;
  }

  /* Botones del hero en movil: apilados con separacion */
  .hero .btn {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    margin-right: 0 !important;
  }
}

@media (max-width: 400px) {
  .hero {
    padding-top: 130px; /* pantallas muy pequenas */
  }
}

.btn-primary-custom {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn-primary-custom:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(211, 84, 0, 0.4);
  color: white;
}

/* Experience Badge Section */
.experience-banner {
  background-color: var(--accent);
  color: white;
  padding: 30px 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .experience-banner {
    margin-top: 1.5rem;
    border-radius: 10px;
  }
}

.exp-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

/* Sections */
.section-title {
  color: var(--secondary);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

/* Checklist con ticks de color primario */
.info-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-checklist li:last-child {
  border-bottom: none;
}

.info-checklist li i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ─── NUEVO DISEÑO SECCIÓN INFORMACIÓN ─── */
.info-section-tag {
  display: inline-block;
  background: rgba(211, 84, 0, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

/* Tarjeta oscura izquierda */
.info-dark-card {
  background: var(--secondary);
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
}

.info-dark-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.info-dark-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.info-dark-list {
  margin: 0;
}

.info-dark-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.info-dark-list li:last-child {
  border-bottom: none;
}

.info-dark-list li i {
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.info-dark-note {
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 0;
}

.info-dark-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.6rem;
  border: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-flex;
  align-items: center;
}

.info-dark-btn:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
}

/* Tarjetas claras derecha */
.info-light-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef0f3;
}

.info-light-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.info-light-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(211, 84, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Bloques de tarifa */
.tarifa-item {
  background: #f8f9fb;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 3px solid var(--primary);
}

.tarifa-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.tarifa-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tarifa-note {
  font-size: 0.78rem;
  color: #888;
}

/* Badge de horario */
.horario-badge {
  display: inline-block;
  background: rgba(211, 84, 0, 0.1);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 4px;
  vertical-align: middle;
}

/* Info Cards */
.info-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border-top: 4px solid var(--primary);
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  font-size: 2.5rem;
  color: var(--primary-light);
  margin-bottom: 20px;
}

/* Gallery Grid */
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox – cursor e indicador visual */
.gallery-clickable {
  cursor: zoom-in;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:has(.gallery-clickable)::after {
  content: '\f00e';                   /* fa-search-plus */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  pointer-events: none;
}

.gallery-item:has(.gallery-clickable):hover::after {
  opacity: 1;
  background: rgba(0, 0, 0, 0.38);
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  /* FontAwesome quote left */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: rgba(243, 156, 18, 0.1);
}

.stars {
  color: var(--accent);
}

/* Booking Form */
.booking-section {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 50px;
  border: 1px solid #eee;
}

.form-control,
.form-select {
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--secondary);
}

/* Footer */
footer {
  background-color: var(--secondary);
  color: white;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  color: white;
}

/* =============================================
   BOTÓN FLOTANTE WHATSAPP
============================================= */
#whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.2s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

#whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #25D366;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

#whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }

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

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

/* =============================================
   SECCIÓN VIDEO
============================================= */
.video-section-tag {
  display: inline-block;
  background: rgba(243, 156, 18, 0.2);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid rgba(243, 156, 18, 0.35);
}

.video-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(211, 84, 0, 0.15);
  transition: box-shadow 0.3s;
}

.video-wrapper:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 28px 72px rgba(0, 0, 0, 0.55),
    0 0 55px rgba(211, 84, 0, 0.25);
}