
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f7f9fc;
  color: #111827;
  line-height: 1.6;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.6);
}

.nav-brand {
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-highlight {
  display: block;
  font-size: 0.75rem;
  color: #ec4899;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ec4899, #a855f7);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/portada.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: brightness(0.7);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(236, 72, 153, 0.5), transparent 55%),
              radial-gradient(circle at 90% 100%, rgba(59, 130, 246, 0.4), transparent 55%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 2.5rem 1.5rem 4.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.hero-quote-badge {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: #ec4899;
  background: linear-gradient(90deg, #ec4899, #f97316);
  font-weight: 700;
  margin-bottom: 1.4rem;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #ec4899, #a855f7);
  color: white;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(168, 85, 247, 0.7);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.8);
  color: white;
  border: 1px solid rgba(248, 250, 252, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 1);
}

.btn-outline {
  background: transparent;
  color: #111827;
  border: 1px solid rgba(15, 23, 42, 0.18);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.05);
}

/* Sections */

section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.175em;
  text-transform: uppercase;
  color: #ec4899;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.6rem;
}

.section-description {
  max-width: 640px;
  color: #4b5563;
  font-size: 0.95rem;
}

/* Destinations */

.destinos-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
}

.destino-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.destino-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.destino-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75), transparent 50%);
}

.destino-label {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 8px 18px rgba(15, 23, 42, 0.8);
}

/* Newsletter / ofertas */

.ofertas {
  background: linear-gradient(90deg, #f9a8d4 0%, #ec4899 38%, #6366f1 100%);
  color: white;
}

.ofertas-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.ofertas-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.ofertas-main h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.ofertas-main p {
  font-size: 0.98rem;
  max-width: 400px;
}

.ofertas-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.ofertas-form input[type="email"] {
  flex: 1 1 180px;
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  outline: none;
}

.ofertas-gallery {
  border-radius: 1.75rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.25);
}

.ofertas-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Próximas salidas / recomendadas */

.cards-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.info-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.info-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.info-card-title {
  font-weight: 700;
}

.badge {
  font-size: 0.7rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(236, 72, 153, 0.08);
  color: #ec4899;
  font-weight: 600;
}

.info-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

.info-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.info-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Testimonios */

.testimonios {
  background: #f9fafb;
}

.testimonios-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
}

.test-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
}

.test-quote {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 0.4rem;
}

.test-text {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 1.1rem;
}

.test-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.test-user small {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
}

/* Nosotros & valores */

.nosotros-layout {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.nosotros-image {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(236, 72, 153, 0.35);
}

.valores-box {
  background: white;
  border-radius: 2rem;
  padding: 1.7rem 1.6rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.valores-box h3 {
  margin-bottom: 0.6rem;
}

.valores-box ul {
  list-style: none;
  margin-top: 0.4rem;
}

.valores-box li {
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.valores-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec4899, #f59e0b);
}

/* Gallery */

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #111827;
  font-weight: 600;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 1.5rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.9);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-size: 2rem;
  color: #f9fafb;
  cursor: pointer;
}

/* Contact / ubicaciones */

.ubicaciones-layout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.05fr);
  gap: 2.2rem;
}

.locations {
  display: grid;
  gap: 1.3rem;
}

.location-block h3 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.location-block p {
  font-size: 0.9rem;
  color: #4b5563;
}

.contact-details {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.contact-details p + p {
  margin-top: 0.15rem;
}

.contact-details a {
  color: #2563eb;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.contact-form h3 {
  margin-bottom: 0.7rem;
}

.contact-form p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  font-size: 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 0.75rem;
  outline: none;
  transition: border 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ec4899;
  box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.35);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* Social embeds */

.social-embeds {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.6rem;
}

.social-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.3rem 1.3rem 1.5rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.15);
}

.social-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.social-header h3 {
  font-size: 0.95rem;
}

.social-handle {
  font-size: 0.78rem;
  color: #6b7280;
}

.social-link {
  font-size: 0.8rem;
  color: #2563eb;
}

/* Video */

.video-wrapper {
  margin-top: 1.6rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Floating WhatsApp buttons */

.whatsapp-floating {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 80;
}

.whatsapp-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.75);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.whatsapp-btn.secondary {
  background: #10b981;
}

.whatsapp-btn:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 22px 46px rgba(16, 185, 129, 0.9);
}

/* Footer */

footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem 1.5rem 1.5rem;
  margin-top: 2rem;
  background: white;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.footer-inner p {
  margin: 0;
}

/* Responsive */

@media (max-width: 900px) {
  .ofertas-layout,
  .nosotros-layout,
  .ubicaciones-layout,
  .social-embeds {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: 60vh;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding-top: 2.1rem;
  }

  section {
    padding: 3.25rem 1.25rem;
  }

  .whatsapp-floating {
    right: 1rem;
    bottom: 1rem;
  }
}
