/* Estilos Globales y Sistema de Diseño de LuisaBalderas Travel */
:root {
  --primary-color: #D8A499;
  --primary-dark: #C28B80;
  --primary-light: #F9EFEF;
  --gold-accent: #C59B73;
  --gold-light: #FAF4EE;
  --navy-dark: #1E2D3B;
  --navy-deep: #131E28;
  --text-dark: #2B2B2B;
  --text-muted: #6C757D;
  --bg-cream: #FDFBF8;
  --bg-white: #FFFFFF;
  --border-light: #EBE5DF;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 36px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* Typography Helpers */
.font-serif {
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--gold-accent);
}

.italic {
  font-style: italic;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  background: rgba(253, 251, 248, 0.96);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4A4A4A;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  display: inline-block;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--gold-accent);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.admin-badge-btn {
  font-size: 0.75rem;
  background: #EAEAEA;
  color: #555;
  padding: 6px 12px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--primary-dark);
  border: 1px solid var(--primary-color);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.btn-navy {
  background-color: var(--navy-dark);
  color: #FFFFFF;
}

.btn-navy:hover {
  background-color: var(--navy-deep);
}

.btn-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.btn-whatsapp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 1.2rem;
  background: var(--bg-white);
  transition: var(--transition-smooth);
}

.btn-whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-sm);
}

/* Admin Toggle Link */
.admin-badge-btn {
  font-size: 0.75rem;
  background: #EAEAEA;
  color: #555;
  padding: 4px 10px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  font-weight: 600;
}
.admin-badge-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(253, 251, 248, 0.92) 0%, rgba(253, 251, 248, 0.75) 45%, rgba(253, 251, 248, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  line-height: 1.15;
  color: var(--navy-dark);
  margin-bottom: 12px;
  font-weight: 400;
}

.hero-title .subtitle-gold {
  color: var(--gold-accent);
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  color: #4A4A4A;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Features Ribbon */
.features-ribbon {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  border-right: 1px solid rgba(0,0,0,0.06);
}

.feature-card:last-child {
  border-right: none;
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 1.5rem;
  background-color: var(--gold-light);
  border-radius: 50%;
}

.feature-text {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy-dark);
}

/* Section Header Generic */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--navy-dark);
  font-weight: 400;
  line-height: 1.2;
}

.section-title .text-gold {
  color: var(--gold-accent);
  font-style: italic;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Destinos Increíbles Section */
.destinations-section {
  padding: 80px 0;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.destination-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-image-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .card-image-wrap img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-dark);
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-duration {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-duration i {
  color: var(--gold-accent);
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
}

.card-price-label {
  font-size: 0.75rem;
  color: var(--navy-dark);
  font-weight: 700;
}

.card-price-amount {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.btn-arrow-trigger {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--navy-dark);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-arrow-trigger:hover {
  background-color: var(--gold-accent);
  transform: scale(1.1);
}

/* Why Travel With Me Section */
.why-travel-section {
  padding: 80px 0;
  background-color: #FAF6F2;
}

.why-travel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-travel-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why-travel-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.why-travel-content .section-title {
  margin-bottom: 32px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reason-icon {
  color: var(--gold-accent);
  font-size: 1.2rem;
  margin-top: 2px;
}

.reason-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.reason-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Tailor-made trip form section */
.tailor-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #FDFBF8 0%, #F5ECE5 100%);
}

.tailor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.tailor-left .section-title {
  margin-bottom: 16px;
}

.tailor-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 24px 0 32px 0;
}

.tailor-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.tailor-feature-item i {
  color: var(--gold-accent);
}

.form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy-dark);
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: #FAFAFA;
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-accent);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 155, 115, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.stats-counter-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  border-right: 1px solid var(--border-light);
  padding-right: 16px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 1.4rem;
  color: var(--gold-accent);
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 4px;
}

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

.stats-image-banner {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
}

.stats-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--bg-cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 0.88rem;
  color: #4A4A4A;
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.user-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
}

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

.stars {
  color: #F59E0B;
  font-size: 0.75rem;
  margin-top: 4px;
}

/* Instagram / Gallery Grid */
.gallery-section {
  padding: 60px 0;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 140px;
}

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

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

/* Bottom CTA Banner */
.bottom-cta-banner {
  background-color: var(--navy-dark);
  color: #FFFFFF;
  padding: 48px 0;
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.cta-title .text-gold {
  color: var(--gold-accent);
  font-style: italic;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Footer */
.footer {
  background-color: #FAF6F2;
  padding: 60px 0 24px 0;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* MODALES */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(19, 30, 40, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  z-index: 10;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: var(--navy-dark);
  color: white;
}

/* Modal Detalle de Viaje */
.trip-modal-header {
  position: relative;
  height: 320px;
}

.trip-modal-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-modal-badge {
  position: absolute;
  bottom: 20px;
  left: 24px;
  background: var(--gold-accent);
  color: white;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.trip-modal-body {
  padding: 32px;
}

.trip-modal-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.trip-modal-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.trip-modal-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trip-modal-price-box {
  background: var(--gold-light);
  border: 1px solid rgba(197, 155, 115, 0.3);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.trip-price-val {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.trip-highlights-list {
  margin: 20px 0;
  list-style: none;
}

.trip-highlights-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.trip-highlights-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-accent);
  font-weight: bold;
}

.itinerary-timeline {
  margin-top: 24px;
  border-left: 2px solid var(--border-light);
  padding-left: 20px;
}

.itinerary-item {
  position: relative;
  margin-bottom: 20px;
}

.itinerary-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-accent);
}

.itinerary-day {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-accent);
  text-transform: uppercase;
}

.itinerary-item-title {
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 0.95rem;
}

.itinerary-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Modal Admin Dashboard */
.admin-modal-card {
  max-width: 960px;
}

.admin-header {
  padding: 24px 32px;
  background: var(--navy-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.admin-body {
  padding: 32px;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.table-responsive {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.admin-table th, .admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.admin-table th {
  background: #F7F5F2;
  font-weight: 700;
  color: var(--navy-dark);
}

.table-img {
  width: 50px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.table-actions {
  display: flex;
  gap: 8px;
}

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  background: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

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

.btn-icon.danger:hover {
  background: #FEE2E2;
  color: #DC2626;
}

/* Responsividad */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-title {
    font-size: 3rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-travel-grid, .tailor-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
