/* ==========================================================================
   SPECIAL TOURS EJECUTIVO - STYLESHEET OFICIAL
   Esquema Cromático: Negro profundo (#090c10), Navy Dark (#0a1b2d), 
   Acentos Oro Metálico (#d4af37, #fbe69b, #aa820a), Blanco Puro & Gris Técnico
   ========================================================================== */

:root {
  --bg-dark: #090c10;
  --bg-dark-secondary: #0f151e;
  --bg-card: #131b26;
  --bg-card-hover: #192433;
  --navy-primary: #0a1b2d;
  --gold-primary: #d4af37;
  --gold-light: #fbe69b;
  --gold-dark: #aa820a;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #fbe69b 50%, #aa820a 100%);
  --text-main: #ffffff;
  --text-muted: #a0aec0;
  --border-color: rgba(212, 175, 55, 0.28);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  --box-shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.2);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.gold {
  color: var(--gold-primary);
}

.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-title {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 35px auto;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.gold-divider {
  width: 70px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.gold-divider.left-align {
  margin: 0 0 20px 0;
}

/* Botones */
.btn-primary, .btn-secondary, .btn-gold-outline, .btn-calc-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #05070a;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-primary);
}

.btn-gold-outline:hover {
  background: var(--gold-primary);
  color: #000;
}

/* Top Bar & Header */
.top-bar {
  background-color: #040608;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  padding: 8px 0;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.top-info span i {
  color: var(--gold-primary);
  margin-right: 6px;
}

.top-social {
  display: flex;
  gap: 16px;
}

.top-social a {
  color: var(--text-muted);
}

.top-social a:hover {
  color: var(--gold-primary);
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(9, 12, 16, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-container {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
  transition: var(--transition-smooth);
}

.header-logo-img:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #cfd8dc;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
}

.btn-nav {
  background: var(--gold-gradient);
  color: #000 !important;
  padding: 9px 18px !important;
  border-radius: 6px;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--gold-primary);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 0 90px 0;
  text-align: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.65) contrast(1.1);
  transform: scale(1.02);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9, 12, 16, 0.85) 0%, rgba(10, 27, 45, 0.6) 50%, rgba(9, 12, 16, 0.95) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 960px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.18rem;
  color: #e2e8f0;
  max-width: 820px;
  margin: 0 auto 38px auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  text-align: left;
}

.feature-pill {
  background: rgba(19, 26, 36, 0.85);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-smooth);
}

.feature-pill:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  background: rgba(19, 26, 36, 0.95);
}

.feature-pill i {
  font-size: 1.6rem;
  color: var(--gold-primary);
}

.feature-pill strong {
  display: block;
  font-size: 0.92rem;
}

.feature-pill small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Notice Section */
.notice-section {
  padding: 30px 0;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.notice-card {
  background: linear-gradient(90deg, #131a24 0%, #1a2535 100%);
  border: 1.5px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: var(--box-shadow);
}

.notice-media {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.notice-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice-content {
  flex: 1;
}

.tag-alert {
  font-size: 0.72rem;
  background: var(--gold-primary);
  color: #000;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.notice-content h3 {
  margin: 8px 0 4px 0;
  font-size: 1.35rem;
}

.notice-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   DIVISIONES DE SERVICIO (Turismo / Empresarial / Ejecutivo)
   ========================================================================== */
.service-division-section {
  padding: 90px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.service-division-section.dark-alt {
  background-color: var(--bg-dark-secondary);
}

.division-header {
  margin-bottom: 40px;
}

.division-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.division-header h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.division-header p {
  color: var(--text-muted);
  max-width: 800px;
  font-size: 0.98rem;
}

.division-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 45px;
  align-items: center;
}

.division-grid.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.division-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.division-features li {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.92rem;
  color: #cfd8dc;
  line-height: 1.5;
}

.division-features li i {
  margin-right: 8px;
}

.division-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.division-media-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--box-shadow);
  height: 380px;
}

.division-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.division-media-card:hover .division-img {
  transform: scale(1.05);
}

.floating-promo-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: rgba(10, 14, 20, 0.88);
  border: 1px solid var(--gold-primary);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-promo-tag i {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

/* Flota Destacada */
.fleet-showcase-section {
  padding: 90px 0;
  background-color: var(--bg-dark-secondary);
}

.fleet-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.fleet-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color);
  box-shadow: var(--box-shadow);
}

.fleet-img-container {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.fleet-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img-container img {
  transform: scale(1.06);
}

.fleet-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.fleet-details {
  padding: 24px;
}

.fleet-details h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.fleet-details p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.fleet-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fleet-tags span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Promotions */
.promo-section {
  padding: 60px 0;
}

.promo-banner-wrapper {
  background: radial-gradient(circle at 10% 50%, #1a2535 0%, #0d131a 100%);
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  padding: 45px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.promo-tag-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.promo-left h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.promo-discount-num {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 20px;
}

.big-percent {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold-light);
}

.discount-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.promo-contract-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contract-icon i {
  font-size: 2.2rem;
  color: var(--gold-primary);
}

.promo-contract-box strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.promo-contract-box p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.promo-logo-display {
  max-width: 220px;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.3));
}

.gold-glow {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   COTIZADOR INTERACTIVO POR PLAZAS Y VEHÍCULO
   ========================================================================== */
.quote-builder-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 10%, #152233 0%, #090c10 100%);
}

.quote-builder-box {
  background: var(--bg-card);
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  padding: 45px;
  box-shadow: var(--box-shadow);
}

.builder-step {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-subtle);
}

.step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--gold-gradient);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
}

.division-radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.radio-pill {
  cursor: pointer;
}

.radio-pill input {
  display: none;
}

.radio-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: #0b1118;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #cfd8dc;
  transition: var(--transition-smooth);
}

.radio-pill input:checked + span {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.units-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.unit-select-card {
  cursor: pointer;
}

.unit-select-card input {
  display: none;
}

.unit-card-inner {
  background: #0b1118;
  border: 1.5px solid var(--border-subtle);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.unit-card-inner i {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.unit-card-inner strong {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #fff;
}

.plazas-tag {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.unit-card-inner small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.unit-select-card input:checked + .unit-card-inner {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cfd8dc;
}

.form-group input, .form-group select, .form-group textarea {
  background: #080c10;
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.builder-footer {
  text-align: center;
  padding-top: 10px;
}

.btn-calc-submit {
  width: 100%;
  max-width: 500px;
  padding: 16px 28px;
  font-size: 1.05rem;
}

.calc-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.calc-note i {
  color: var(--gold-primary);
}

/* ==========================================================================
   PAGE BANNER & GALERIA
   ========================================================================== */
.page-banner {
  padding: 70px 0 35px 0;
  background: linear-gradient(180deg, #0a1b2d 0%, #090c10 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.page-title {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.gallery-section {
  padding: 60px 0 100px 0;
}

.filter-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: #cfd8dc;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color);
  box-shadow: var(--box-shadow);
}

.card-img-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #05070a;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.media-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-overlay-action {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(3px);
}

.gallery-card:hover .card-overlay-action {
  opacity: 1;
}

.btn-view-details {
  background: var(--gold-gradient);
  border: none;
  color: #000;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 20px;
  flex: 1;
}

.amenities-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.amenities-icons span {
  font-size: 0.8rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
}

.modal-window {
  background: var(--bg-card);
  border: 1.5px solid var(--gold-primary);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--box-shadow);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: var(--gold-primary);
  color: #000;
}

.modal-body {
  padding: 30px;
}

.modal-preview-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   FOOTER & FLOATING WIDGET
   ========================================================================== */
.site-footer {
  background-color: #040608;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.brand-col p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer-socials a:hover {
  background: var(--gold-primary);
  color: #000;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.footer-col ul li a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 22px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 75px;
  background: #111;
  color: #fff;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

/* Responsivo */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .division-grid, .division-grid.reverse {
    grid-template-columns: 1fr;
  }
  .division-media-card {
    height: 300px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #090c10;
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    display: none;
  }
  .navbar.open {
    display: block;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .quote-builder-box {
    padding: 25px 20px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* Tarjetas de Unidad sin Imagen */
.unit-card-inner {
  background: #0b1118;
  border: 1.5px solid var(--border-subtle);
  border-radius: 14px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.unit-icon-box {
  width: 55px;
  height: 55px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.unit-card-inner strong {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}

.unit-card-inner small {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.unit-select-card input:checked + .unit-card-inner {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.unit-select-card input:checked + .unit-card-inner .unit-icon-box {
  background: var(--gold-primary);
  color: #000;
}
/* ==========================================================================
   ESTILOS PREMIUM PARA EL PASO 3 (ITINERARIO Y FECHAS DINÁMICAS)
   ========================================================================== */
.dates-itinerary-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}

.date-card {
  background: #090e14;
  border: 1.5px solid var(--border-subtle);
  border-radius: 14px;
  padding: 22px 20px;
  transition: var(--transition-smooth);
}

.date-card.departure-card {
  border-left: 4px solid var(--gold-primary);
}

.date-card.return-card {
  border-left: 4px solid #4a7c59;
}

.date-card:hover {
  border-color: var(--border-color);
}

.date-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.date-card-header i {
  font-size: 1.6rem;
}

.date-card-header strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}

.date-card-header small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.date-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Estado Deshabilitado para Solo Ida */
.date-card.disabled-card {
  opacity: 0.35;
  filter: grayscale(0.8);
  pointer-events: none;
  background: #06090d;
  border-color: rgba(255, 255, 255, 0.05);
}

.continuous-notice {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-primary);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.continuous-notice i {
  font-size: 1.8rem;
}

.continuous-notice strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gold-light);
}

.continuous-notice p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}

@media (max-width: 768px) {
  .dates-itinerary-container {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   OPTIMIZACIÓN RESPONSIVA: AVISO & BANNER DE PROMOCIÓN
   ========================================================================== */

/* 1. Tarjeta de Comunicado Oficial */
.notice-section {
  padding: 30px 0;
}

.notice-card {
  background: linear-gradient(90deg, #131a24 0%, #1a2535 100%);
  border: 1.5px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: var(--box-shadow);
}

.notice-media {
  flex-shrink: 0;
  width: 130px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.notice-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice-content {
  flex: 1;
}

.notice-cta .btn-gold-outline {
  white-space: nowrap;
}

/* 2. Banner de Promoción Especial */
.promo-section {
  padding: 50px 0;
}

.promo-banner-wrapper {
  background: radial-gradient(circle at 10% 50%, #1a2535 0%, #0d131a 100%);
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  padding: 40px 45px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 35px;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.promo-discount-num {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.promo-contract-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.promo-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.promo-logo-display {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

/* ==========================================================================
   MEDIA QUERIES ESPECÍFICAS PARA CELULARES (Hasta 768px y 480px)
   ========================================================================== */

@media (max-width: 768px) {
  /* Comunicado en Móvil */
  .notice-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 18px;
  }

  .notice-media {
    width: 100%;
    max-width: 280px;
    height: 140px;
    margin: 0 auto;
  }

  .notice-content h3 {
    font-size: 1.25rem;
    margin: 10px 0;
  }

  .notice-content p {
    font-size: 0.88rem;
  }

  .notice-cta {
    width: 100%;
  }

  .notice-cta .btn-gold-outline {
    width: 100%;
  }

  /* Banner de Promoción en Móvil */
  .promo-banner-wrapper {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 25px;
    text-align: center;
  }

  .promo-left h2 {
    font-size: 1.7rem;
  }

  .promo-discount-num {
    justify-content: center;
    gap: 10px;
  }

  .big-percent {
    font-size: 2.6rem;
  }

  .discount-desc {
    font-size: 0.85rem;
    text-align: center;
  }

  .promo-contract-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }

  .promo-contract-box .contract-icon i {
    font-size: 2rem;
  }

  .promo-right .btn-primary {
    width: 100%;
  }

  .promo-logo-display {
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .notice-media {
    height: 120px;
  }

  .big-percent {
    font-size: 2.2rem;
  }
}
/* ==========================================================================
   CARRUSEL DE ASIENTOS E INTERIORES EN GALERÍA
   ========================================================================== */
.card-carousel-container {
  position: relative;
  overflow: hidden;
  height: 230px;
  background: #05070a;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: fadeInCarousel 0.4s ease;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadeInCarousel {
  from { opacity: 0; }
  to { opacity: 1; }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--border-color);
  color: var(--gold-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

.prev-btn { left: 8px; }
.next-btn { right: 8px; }

.carousel-indicator-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.carousel-indicator-dots .dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-indicator-dots .dot.active {
  background: var(--gold-primary);
  width: 18px;
  border-radius: 10px;
}
/* ==========================================================================
   PASO 1: ICONOS FOTOGRÁFICOS DE UNIDAD (MÁS GRANDES Y HOVER EXPANSIVO)
   ========================================================================== */
.units-photo-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 15px;
}

.unit-photo-pill {
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.unit-photo-pill input {
  display: none;
}

.unit-photo-circle {
  position: relative;
  width: 100%;
  max-width: 125px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  border: 2.5px solid var(--border-subtle);
  background: #06090d;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
}

.unit-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* HOVER MÁS GRANDE Y ELEVADO */
.unit-photo-pill:hover {
  transform: translateY(-10px) scale(1.25);
  z-index: 20;
}

.unit-photo-pill:hover .unit-photo-circle {
  border-color: var(--gold-primary);
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.55);
}

.unit-photo-pill:hover .unit-photo-circle img {
  transform: scale(1.15);
}

.photo-pill-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.90);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  padding: 4px 0;
  border-top: 1px solid var(--border-color);
  backdrop-filter: blur(4px);
}

.check-overlay {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  background: var(--gold-primary);
  color: #000;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}

/* ESTADO SELECCIONADO */
.unit-photo-pill input:checked + .unit-photo-circle {
  border: 3px solid var(--gold-primary);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.unit-photo-pill input:checked + .unit-photo-circle .check-overlay {
  display: flex;
}

.unit-photo-pill input:checked + .unit-photo-circle .photo-pill-badge {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 900;
}

@media (max-width: 992px) {
  .units-photo-icon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .unit-photo-circle {
    max-width: 120px;
    height: 115px;
  }
}

@media (max-width: 768px) {
  .units-photo-icon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .unit-photo-circle {
    height: 100px;
    border-radius: 16px;
  }
  .unit-photo-pill:hover {
    transform: translateY(-5px) scale(1.14);
  }
}

@media (max-width: 480px) {
  .units-photo-icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .unit-photo-circle {
    height: 95px;
  }
}
/* ==========================================================================
   HERO BANNER DINÁMICO (SLIDER EN FUNDIDO / CROSSFADE)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 0 90px 0;
  text-align: center;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.60) contrast(1.1);
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 6s ease-out;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9, 12, 16, 0.82) 0%, rgba(10, 27, 45, 0.55) 50%, rgba(9, 12, 16, 0.95) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 980px;
}

/* ==========================================================================
   ICONOS DE REDES SOCIALES EN EL HERO BANNER (SOLO ICONOS)
   ========================================================================== */
.hero-social-icons-only {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 25px 0 35px 0;
}

.social-circle-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(10, 15, 22, 0.7);
  border: 1.5px solid var(--border-color);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Efectos al pasar el cursor */
.social-circle-btn.whatsapp:hover {
  background: #25d366;
  color: #000;
  border-color: #25d366;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.social-circle-btn.facebook:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

.social-circle-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: #e6683c;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
}

@media (max-width: 768px) {
  .hero-social-icons-only {
    gap: 16px;
    margin: 20px 0 30px 0;
  }

  .social-circle-btn {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
}
/* ==========================================================================
   BOTÓN COTIZAR VIAJE DESTACADO EN HERO (GRANDE EN RESPONSIVE)
   ========================================================================== */
.btn-hero-quote {
  font-size: 1.15rem !important;
  padding: 18px 38px !important;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

@media (max-width: 768px) {
  .btn-hero-quote {
    width: 100%;
    font-size: 1.25rem !important;
    padding: 20px 25px !important;
    border-radius: 12px;
  }
}

/* ==========================================================================
   PASO 1: ICONOS FOTOGRÁFICOS CON HOVER ZOOM EXPANSIVO
   ========================================================================== */
.units-photo-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 15px;
}

.unit-photo-pill {
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.unit-photo-pill input {
  display: none;
}

.unit-photo-circle {
  position: relative;
  width: 100%;
  max-width: 110px;
  height: 105px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  background: #06090d;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.unit-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* HOVER QUE SE HACE MÁS GRANDE */
.unit-photo-pill:hover {
  transform: translateY(-8px) scale(1.18);
  z-index: 10;
}

.unit-photo-pill:hover .unit-photo-circle {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

.unit-photo-pill:hover .unit-photo-circle img {
  transform: scale(1.12);
}

.photo-pill-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.88);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  padding: 4px 0;
  border-top: 1px solid var(--border-color);
  backdrop-filter: blur(4px);
}

.check-overlay {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  background: var(--gold-primary);
  color: #000;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ESTADO SELECCIONADO */
.unit-photo-pill input:checked + .unit-photo-circle {
  border: 2.5px solid var(--gold-primary);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.unit-photo-pill input:checked + .unit-photo-circle .check-overlay {
  display: flex;
}

.unit-photo-pill input:checked + .unit-photo-circle .photo-pill-badge {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 900;
}

@media (max-width: 992px) {
  .units-photo-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .units-photo-icon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .unit-photo-circle {
    height: 90px;
    border-radius: 14px;
  }
  .unit-photo-pill:hover {
    transform: translateY(-4px) scale(1.10);
  }
}

@media (max-width: 480px) {
  .units-photo-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   MODAL DE FORMULARIO EMPRESARIAL DEDICADO
   ========================================================================== */
.modal-empresarial-window {
  max-width: 740px !important;
  background: #0f1622 !important;
}

.modal-emp-header {
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 15px;
}

.modal-emp-header h2 {
  font-size: 1.6rem;
  margin: 6px 0;
}

.modal-emp-header p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .form-grid-2, .form-grid-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}