/* ============================================
   MALAQUITA VIAJES - Página en construcción
   ============================================ */

:root {
  --blue-deep: #0f2847;
  --blue-dark: #1a3a5c;
  --cream: #f8f6f2;
  --beige: #e8e4dc;
  --gold: #c4a35a;
  --gold-light: #d4b87a;
  --text-dark: #1a2d3d;
  --text-muted: #5a6d7d;
  --whatsapp: #25d366;
  --whatsapp-hover: #20bd5a;
  --white: #ffffff;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}

/* Fondo: ventana de avión con vista al cielo/nubes */
.construccion-wrap {
  position: fixed;
  inset: 0;
  background-image: url('images/FONDO%20AVION.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.construccion-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 40, 71, 0.9) 0%,
    rgba(26, 58, 92, 0.85) 50%,
    rgba(15, 40, 71, 0.88) 100%
  );
}

.construccion-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 520px;
}

.logo-construccion {
  display: block;
  margin: 0 auto 2.5rem;
  height: 140px;
  width: auto;
  object-fit: contain;
}

.construccion-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.construccion-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background: var(--whatsapp);
  border: none;
  border-radius: 100px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
}

/* Botón flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

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

@media (max-width: 480px) {
  .logo-construccion {
    height: 100px;
    margin-bottom: 2rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 1.25rem;
    left: 1.25rem;
  }
}
