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

:root {
  --primary: #ff6b6b;
  --primary-dark: #e85555;
  --white: #ffffff;
  --dark: #2d3436;
  --radius: 16px;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--white);
  overflow-x: hidden;
}

.construction-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 40px;
  text-align: center;
}

.construction-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("FOTOS/WhatsApp%20Image%202026-05-18%20at%2017.27.20.jpeg");
  background-size: cover;
  background-position: center;
}

.construction-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(45, 52, 54, 0.72) 0%,
    rgba(255, 107, 107, 0.45) 50%,
    rgba(45, 52, 54, 0.78) 100%
  );
}

.construction-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
}

.construction-logo {
  width: min(220px, 70vw);
  height: auto;
  margin: 0 auto 28px;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}

.construction-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.construction-tag {
  display: inline-block;
  background: #fff0f0;
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.construction-card h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--dark);
}

.construction-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: #636e72;
  margin-bottom: 28px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  padding: 16px 24px;
  background: #25d366;
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-whatsapp svg {
  flex-shrink: 0;
}

.construction-location {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.construction-footer {
  margin-top: 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.construction-footer a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-decoration: underline;
}
