* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  overflow-x: hidden;
  background: #efe7ff;
}

.hidden {
  display: none;
}

/* =========================
   LANDING PRINCIPAL
========================= */

.landing-screen {

  position: relative;

  width: 100%;

  height: 100vh;

  background-color: #efe7ff;

  background-image: url('https://i.imgur.com/pSIhvHu.jpeg');

  background-size: contain;

  background-position: center center;

  background-repeat: no-repeat;

  display: flex;

  justify-content: center;

  align-items: center;
}

.overlay {

  position: absolute;

  inset: 0;

  background: rgba(0,0,0,0.08);

  pointer-events: none;
}

.landing-content {

  position: relative;

  z-index: 20;

  width: 100%;

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;
}

#ingresar-btn {

  position: absolute;

  top: 46%;

  left: 50%;

  transform: translate(-50%, -50%);

  border: none;

  background: #cbb6ff;

  color: white;

  padding: 16px 42px;

  border-radius: 20px;

  font-size: 18px;

  font-weight: bold;

  letter-spacing: 1px;

  cursor: pointer;

  transition: 0.3s;

  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

#ingresar-btn:hover {

  transform: translate(-50%, -50%) scale(1.05);

  background: #b89cff;
}

/* =========================
   FONDO INTERIOR
========================= */

.main-background {

  min-height: 100vh;

  background-color: #efe7ff;

  background-image: url('https://i.imgur.com/LUre4w8.jpeg');

  background-size: contain;

  background-position: center center;

  background-repeat: no-repeat;

  position: relative;

  padding-bottom: 50px;
}

.background-overlay {

  position: absolute;

  inset: 0;

  background: rgba(255,255,255,0.08);

  pointer-events: none;
}

/* =========================
   NAVBAR
========================= */

.navbar {

  position: sticky;

  top: 0;

  width: 100%;

  z-index: 999;

  padding: 16px;

  display: flex;

  align-items: center;

  gap: 10px;
}

#menu-toggle {

  border: none;

  background: #cbb6ff;

  color: white;

  font-size: 24px;

  padding: 10px 16px;

  border-radius: 14px;

  cursor: pointer;

  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.menu {

  display: flex;

  gap: 10px;

  flex-wrap: wrap;
}

.hidden-menu {

  display: none;
}

.menu button {

  border: none;

  padding: 12px 18px;

  border-radius: 14px;

  background: #cbb6ff;

  color: white;

  cursor: pointer;

  transition: 0.3s;

  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.menu button:hover {

  background: #b89cff;

  transform: translateY(-2px);
}

/* =========================
   SECCIONES
========================= */

.section {

  position: relative;

  z-index: 2;

  padding: 120px 20px 40px;

  animation: fadeIn 0.5s ease;
}

.section h2 {

  color: white;

  margin-bottom: 20px;

  text-align: center;

  font-size: 32px;
}

/* =========================
   PRODUCTOS
========================= */

.cards {

  display: grid;

  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));

  gap: 20px;
}

.card {

  background: rgba(255,255,255,0.82);

  border-radius: 24px;

  padding: 20px;

  box-shadow: 0 8px 30px rgba(0,0,0,0.12);

  color: #444;
}

.card img {

  width: 100%;

  border-radius: 18px;
}

.card h3 {

  margin-top: 14px;
}

.card a {

  display: inline-block;

  margin-top: 14px;

  background: #cbb6ff;

  color: white;

  text-decoration: none;

  padding: 12px 16px;

  border-radius: 14px;
}

/* =========================
   SOBRE MI
========================= */

.galeria {

  display: grid;

  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));

  gap: 20px;
}

.galeria img {

  width: 100%;

  border-radius: 20px;
}

#sobre-mi-texto {

  color: white;

  font-size: 18px;

  margin-bottom: 30px;

  text-align: center;
}

/* =========================
   TURNOS
========================= */

.turnos-box {

  max-width: 520px;

  margin: auto;

  padding: 35px;

  border-radius: 24px;

  background: rgba(255,255,255,0.85);

  box-shadow: 0 8px 30px rgba(0,0,0,0.12);

  text-align: center;

  color: #444;
}

.turnos-box h2 {

  color: #8d6fe8;
}

.turnos-box p {

  margin-top: 14px;

  font-size: 18px;
}

.whatsapp-btn {

  margin-top: 24px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  text-decoration: none;

  background: #25d366;

  color: white;

  padding: 14px 24px;

  border-radius: 16px;

  font-weight: bold;
}

.whatsapp-btn img {

  width: 28px;
}

/* =========================
   ANIMACIONES
========================= */

@keyframes fadeIn {

  from {

    opacity: 0;

    transform: translateY(20px);
  }

  to {

    opacity: 1;

    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE MOBILE
========================= */

@media (max-width: 768px) {

  .landing-screen {

    background-size: contain;

    background-position: center center;

    background-repeat: no-repeat;

    background-color: #efe7ff;
  }

  .main-background {

    background-size: cover;

    background-position: center top;

    background-color: #efe7ff;
  }

  #ingresar-btn {

    top: 58%;

    left: 50%;

    transform: translate(-50%, -50%);

    font-size: 16px;

    padding: 14px 28px;

    border-radius: 18px;
  }

  .section h2 {

    font-size: 26px;
  }

  .turnos-box {

    padding: 28px 20px;
  }

}
