/* layout.css */
/* HEADER & MENU ICON */
header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 12px 18px;
  border: none;
  pointer-events: none;
  transition: all 0.4s ease;
}

.menu {
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
  pointer-events: auto;
  transition: all 0.4s ease;
  background: rgba(230, 218, 200, 0.08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(203, 185, 164, 0.12);
}

.menu:hover {
  background: rgba(230, 218, 200, 0.15);
  border-color: rgba(203, 185, 164, 0.2);
}

/* HIDDEN SECTIONS (shown in modals only) */
.about-section,
.services-section,
.policies-section,
.gift-cards-section,
#referidos,
.book-appointment-section,
footer {
  display: none;
}

/* MENU OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* MOBILE MENU */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(163, 126, 102, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.05);
}

.mobile-menu-overlay.active {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.close-menu {
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s ease, color 0.2s ease;
  color: var(--white);
}

.close-menu:hover {
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.8);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
  padding: 0;
}

.mobile-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.2s ease;
  display: block;
  line-height: 1.6;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 5px 0;
}

.mobile-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.mobile-menu-overlay.active .mobile-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu-overlay.active .mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-link:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu-overlay.active .mobile-link:nth-child(8) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .mobile-link:nth-child(9) { transition-delay: 0.45s; }
.mobile-menu-overlay.active .mobile-link:nth-child(10) { transition-delay: 0.5s; }
.mobile-menu-overlay.active .mobile-link:nth-child(11) { transition-delay: 0.55s; }

/* MENU FOOTER */
.menu-footer {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-socials {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.menu-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.25s ease;
  color: var(--white);
  background-color: transparent;
}

.menu-socials a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.menu-legal {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.menu-legal a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.menu-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

.menu-powered {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: var(--white);
  letter-spacing: 1px;
  opacity: 0.6;
}

/* HERO */
.hero {
  height: 100vh;
  width: 100%;
  background: url('IMG-20260205-WA0035 (1).jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  padding-top: 140px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0;
  animation: slideDownFade 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-btn {
  margin-top: 10px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.95);
  border-radius: 4px;
  padding: 12px 28px;
  backdrop-filter: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-content {
    padding-top: 120px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
}