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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background-color: #f6f7fb;
  line-height: 1.6;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #f7d47b;
}

.nav-brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #f7d47b;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-text span:first-child {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-brand-text span:last-child {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #fefefe;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: #f7d47b;
  transition: width 0.25s ease;
}

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

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #f7d47b;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.25)), url("../img/hero-playa-carrizalillo.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 6rem 1.5rem 4rem;
  animation: fadeInUp 1s ease-out;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  color: #f7d47b;
}

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

.hero-title span {
  color: #f7d47b;
}

.hero-subtitle {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badge {
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.35);
}

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

.btn-primary, .btn-outline {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: #f7d47b;
  color: #1a1a1a;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.65);
}

main {
  background: radial-gradient(circle at top, #ffffff 0, #f6f7fb 55%);
}

.section {
  padding: 4rem 1.5rem;
}

.section-alt {
  background: white;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: #c7993b;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #555;
  font-size: 0.98rem;
}

/* About */
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.card {
  background: white;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}

.chip {
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #f1f3fb;
  color: #444;
}

.list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.list li::before {
  content: "•";
  color: #c7993b;
  margin-right: 0.4rem;
}

/* Destinos destacados */
.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.destino-card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
}

.destino-img {
  position: relative;
  overflow: hidden;
}

.destino-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.destino-card:hover .destino-img img {
  transform: scale(1.08);
}

.destino-tag {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(0,0,0,0.7);
  color: #fefefe;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.destino-body {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.destino-body h3 {
  font-size: 1.1rem;
}

.destino-meta {
  font-size: 0.8rem;
  color: #666;
}

.destino-price {
  margin-top: 0.4rem;
  font-weight: 700;
  color: #c27d11;
  font-size: 0.95rem;
}

/* Video */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

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

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Galería */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  border-radius: 0.9rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

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

.gallery-item::after {
  content: "Ver más";
  position: absolute;
  inset: auto 0 0 0;
  text-align: center;
  padding: 0.25rem 0;
  font-size: 0.78rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fefefe;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Modal lightbox */
#lightboxModal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

#lightboxModal.open {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

/* Redes sociales */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.social-card {
  background: white;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(15,23,42,0.09);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.social-pill {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #f6f3ff;
  font-size: 0.75rem;
  color: #6b21a8;
}

.social-handle {
  font-size: 0.85rem;
  color: #555;
}

/* Contacto */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.input-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #444;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #d4d4e0;
  font-size: 0.9rem;
  font-family: inherit;
}

.input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-meta {
  display: grid;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.contact-meta strong {
  color: #111827;
}

.callout {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: #fef9c3;
  font-size: 0.85rem;
  border: 1px solid #facc15;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  z-index: 1500;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Call button fixed on mobile */
.call-fixed {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0f172a;
  padding: 0.55rem 1.5rem calc(env(safe-area-inset-bottom) + 0.55rem);
  z-index: 1400;
}

.call-fixed-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: white;
  font-size: 0.85rem;
}

.call-fixed a {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #22c55e;
  font-weight: 600;
  color: #022c22;
}

footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 1.5rem 2rem;
  background: #020617;
  color: #9ca3af;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.footer-inner a {
  color: #e5e7eb;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .section {
    padding: 3rem 1.25rem;
  }
  .grid-2,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    min-height: 70vh;
  }
  .hero-content {
    padding-top: 5rem;
  }
  .call-fixed {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-badges {
    gap: 0.5rem;
  }
}
