:root {
  --primary: #0ea5e9;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --dark: #0f172a;
  --darker: #020617;
  --light: #f1f5f9;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --success: #10b981;
  --danger: #ef4444;
  --card-bg: rgba(15, 23, 42, 0.4);
  --card-border: rgba(255, 255, 255, 0.08);
  --gradient: linear-gradient(135deg, #0ea5e9, #06b6d4);
  --gradient-warm: linear-gradient(135deg, #f59e0b, #ef4444);
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
  cursor: pointer;
}

.logo-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

/* Header & Navigation */
header {
  backdrop-filter: blur(20px);
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.logo {
  background: var(--gradient);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.35);
}

header h1, header h2 {
  font-size: 1.3rem;
  margin: 0;
  background: linear-gradient(135deg, var(--light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.small {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-top: 0.25rem;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--primary);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.cta {
  background: var(--gradient);
  padding: 10px 20px !important;
  border-radius: 10px;
  color: white !important;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
  transition: all 0.3s ease;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.35);
}

.cta::after {
  display: none !important;
}

/* Main Content */
main {
  padding: 3rem 0;
}

section {
  margin: 3rem 0;
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: 0 30px 80px rgba(14, 165, 233, 0.15);
  transform: translateY(-4px);
}

/* Hero Section */
.hero {
  max-width: 1300px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero .card {
  padding: 2.5rem;
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.muted {
  color: var(--muted);
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.grid-3 .card {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.small-center {
  text-align: center;
}

.big {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-badge {
  background: var(--gradient);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
}

/* Images Section */
.images {
  max-width: 1300px;
  margin: 2.5rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 2rem;
}

.images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.images img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.25);
}

/* CARACTERÍSTICAS DESTACADAS */
.features-highlight {
  max-width: 1300px;
  margin: 2.5rem auto;
  padding: 0 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(6, 182, 212, 0.04));
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 14px;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(6, 182, 212, 0.1));
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  margin-bottom: 0.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* TESTIMONIOS DESTACADOS */
.testimonials-featured {
  max-width: 1300px;
  margin: 2.5rem auto;
  padding: 0 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.testimonial-featured {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(6, 182, 212, 0.04));
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-featured:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.testimonial-featured .stars {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-featured p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-featured strong {
  color: var(--accent);
  font-size: 0.9rem;
}

/* PREGUNTAS FRECUENTES */
.faq-section {
  max-width: 1300px;
  margin: 2.5rem auto;
  padding: 0 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(14, 165, 233, 0.25);
  transform: translateY(-3px);
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.faq-item p {
  line-height: 1.7;
}

/* OFERTAS ESPECIALES */
.offers-section {
  max-width: 1300px;
  margin: 2.5rem auto;
  padding: 0 2rem;
}

.offer-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.1));
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.1);
}

.offer-banner h2 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.offer-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  text-align: left;
}

.benefit {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  font-weight: 600;
  transition: all 0.3s ease;
}

.benefit:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

/* CONFIABILIDAD Y GARANTÍAS */
.trust-section {
  max-width: 1300px;
  margin: 2.5rem auto;
  padding: 0 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-item {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(14, 165, 233, 0.04));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 14px;
  padding: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.trust-item:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}

.trust-item h3 {
  color: var(--success);
  margin-bottom: 1rem;
}

/* Accommodations */
.accommodations {
  max-width: 1300px;
  margin: 2.5rem auto;
  padding: 0 2rem;
}

.accommodations h2 {
  text-align: center;
  margin-bottom: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hotel-card {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(6, 182, 212, 0.04));
  border: 1px solid rgba(14, 165, 233, 0.15);
}

.hotel-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}

/* Itinerary */
.itinerary {
  max-width: 1300px;
  margin: 2.5rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
}

.day {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.day:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateX(8px);
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dot.blue { background: #0ea5e9; }
.dot.green { background: #10b981; }
.dot.yellow { background: #f59e0b; }
.dot.red { background: #ef4444; }
.dot.purple { background: #6366f1; }
.dot.teal { background: #06b6d4; }
.dot.violet { background: #7c3aed; }
.dot.mint { background: #34d399; }
.dot.pink { background: #fb7185; }
.dot.orange { background: #f97316; }

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
}

th {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(6, 182, 212, 0.1));
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid rgba(14, 165, 233, 0.2);
}

td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

tr:hover {
  background: rgba(14, 165, 233, 0.08);
}

.total {
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.05));
}

/* Reservation Form */
.reservation-section {
  max-width: 1300px;
  margin: 2.5rem auto;
  padding: 0 2rem;
}

.reservation-section .card {
  max-width: 700px;
  margin: 0 auto;
}

#booking-form {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

#booking-form input,
#booking-form textarea {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

#booking-form input::placeholder,
#booking-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

#booking-form input:focus,
#booking-form textarea:focus {
  outline: none;
  background: rgba(14, 165, 233, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(14, 165, 233, 0.15);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn:hover {
  background: rgba(14, 165, 233, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}

.primary-btn {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.4);
}

.primary-btn:active {
  transform: translateY(-1px);
}

.btn.secondary {
  background: rgba(107, 114, 128, 0.15);
  color: var(--text);
  border-color: rgba(107, 114, 128, 0.3);
}

.btn.secondary:hover {
  background: rgba(107, 114, 128, 0.25);
  border-color: rgba(107, 114, 128, 0.5);
}

/* Overlay & Dialog */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 2000;
  backdrop-filter: blur(8px);
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.dialog {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(9, 12, 32, 0.95));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 20px;
  padding: 3rem;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 30px 100px rgba(14, 165, 233, 0.2);
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.dialog-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer */
footer {
  background: rgba(15, 23, 42, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

footer h3 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

footer p {
  line-height: 1.8;
}

.contact-card {
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(14, 165, 233, 0.4);
  background: rgba(14, 165, 233, 0.12);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .images {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .itinerary {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .testimonials-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.3rem; }

  .wrap {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .images {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .cards-row {
    grid-template-columns: 1fr;
  }

  .dialog {
    max-width: 90%;
    padding: 2rem;
  }

  .features-grid,
  .testimonials-grid,
  .faq-grid,
  .trust-grid,
  .offer-benefits {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .testimonial-featured,
  .trust-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }

  .card {
    padding: 1.5rem;
  }

  .hero .card {
    padding: 1.5rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn,
  .primary-btn {
    width: 100%;
  }

  nav {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .price-badge {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .offer-banner {
    padding: 1.5rem;
  }

  .offer-banner h2 {
    font-size: 1.3rem;
  }
}

/* Utility Classes */
.tiny {
  font-size: 0.75rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.card {
  animation: fadeIn 0.5s ease;
}
