@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #070014;
  --bg-2: #160027;
  --bg-3: #230043;
  --purple: #7c1dff;
  --purple-2: #a855f7;
  --magenta: #ff4fd8;
  --pink: #ff64d8;
  --hot-pink: #ff3fd1;
  --gold: #ffd166;
  --cyan: #66e8ff;
  --green: #57e389;
  --red: #ff6b8b;
  --white: #ffffff;
  --soft-white: rgba(255,255,255,0.82);
  --muted: rgba(255,255,255,0.62);
  --line: rgba(255,255,255,0.14);
  --shadow-pink: 0 0 32px rgba(255,79,216,0.36);
  --shadow-purple: 0 18px 60px rgba(124,29,255,0.32);
  --radius-lg: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(255,79,216,0.23), transparent 32%),
    radial-gradient(circle at 85% 8%, rgba(124,29,255,0.27), transparent 34%),
    linear-gradient(180deg, #090017 0%, #160027 42%, #090017 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.55) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,209,102,0.6) 0 1px, transparent 1.5px);
  background-size: 120px 120px, 180px 180px;
  background-position: 20px 40px, 80px 120px;
  opacity: 0.18;
  z-index: 0;
}

a { color: inherit; }
.page { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(8, 0, 22, 0.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1240px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark {
  width: 43px;
  height: 43px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 30%, #fff 0 4%, transparent 5%),
    linear-gradient(135deg, var(--magenta), var(--purple));
  box-shadow: var(--shadow-pink);
  border: 1px solid rgba(255,255,255,0.35);
  font-weight: 900;
  font-size: 1.1rem;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.02rem; font-weight: 900; letter-spacing: -0.03em; }
.brand-text span { font-size: 0.72rem; color: var(--muted); margin-top: 5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.74);
}

.nav-links a:hover {
  color: white;
  text-shadow: 0 0 18px rgba(255,79,216,0.75);
}

.lang-mini {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: white !important;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple-2));
  box-shadow: 0 0 28px rgba(255,79,216,0.34), 0 18px 40px rgba(124,29,255,0.22);
}

.btn-secondary {
  color: white !important;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.04);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 74px);
  padding: 88px 0 70px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.64);
  font-weight: 900;
  font-size: 0.73rem;
  margin: 0 0 18px;
}

.kicker::before, .kicker::after {
  content: "✦";
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255,209,102,0.75);
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 900;
  text-shadow: 0 0 25px rgba(255,255,255,0.22), 0 0 48px rgba(255,79,216,0.26);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-shadow: 0 0 28px rgba(255,79,216,0.22);
}

h3 { margin: 0 0 10px; font-size: 1.08rem; font-weight: 900; }

.lead {
  color: var(--soft-white);
  line-height: 1.72;
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  max-width: 760px;
}

.hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

.stats { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.stat {
  min-width: 128px;
  padding: 16px 18px;
  border-radius: 19px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.09);
  box-shadow: inset 0 0 25px rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  text-align: center;
}

.stat strong { display: block; color: white; font-size: 1.05rem; }
.stat span { display: block; color: var(--muted); font-size: 0.72rem; margin-top: 4px; }

.neon-card {
  min-height: 500px;
  border-radius: 42px;
  background:
    linear-gradient(rgba(10,0,26,0.28), rgba(10,0,26,0.86)),
    radial-gradient(circle at 25% 20%, rgba(255,79,216,0.35), transparent 28%),
    radial-gradient(circle at 70% 20%, rgba(102,232,255,0.16), transparent 27%),
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow-purple), inset 0 0 70px rgba(255,79,216,0.08);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px;
}

.neon-card::before {
  content: "";
  position: absolute;
  inset: -90px;
  background:
    linear-gradient(120deg, transparent 18%, rgba(255,79,216,0.28) 19%, transparent 21%),
    linear-gradient(60deg, transparent 45%, rgba(255,255,255,0.13) 46%, transparent 48%);
  transform: rotate(-8deg);
}

.neon-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  border: 2px solid rgba(255,79,216,0.36);
  box-shadow: 0 0 38px rgba(255,79,216,0.38);
  bottom: -70px;
  right: -50px;
}

.neon-card-inner { position: relative; z-index: 2; }

.logo-orb {
  width: 128px;
  height: 128px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, white 0 3%, transparent 4%),
    radial-gradient(circle at 70% 65%, rgba(102,232,255,0.55), transparent 25%),
    linear-gradient(135deg, var(--magenta), var(--purple));
  box-shadow: 0 0 44px rgba(255,79,216,0.5), inset 0 0 32px rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.45);
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  font-weight: 900;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.section.alt {
  width: 100%;
  max-width: none;
  padding: 86px max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,79,216,0.04));
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: inset 0 0 24px rgba(255,255,255,0.035), 0 18px 45px rgba(0,0,0,0.14);
  backdrop-filter: blur(14px);
}

.card:hover {
  border-color: rgba(255,79,216,0.36);
  box-shadow: 0 0 30px rgba(255,79,216,0.16), 0 18px 45px rgba(0,0,0,0.18);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255,79,216,0.32), rgba(124,29,255,0.28));
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  box-shadow: inset 0 0 22px rgba(255,255,255,0.08);
}

.card p { color: var(--muted); line-height: 1.62; }

.person-card { padding: 0; overflow: hidden; }

.person-photo {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(12,0,28,0.05), rgba(12,0,28,0.72)),
    radial-gradient(circle at 30% 25%, rgba(255,79,216,0.52), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(102,232,255,0.22), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 3rem;
}

.person-content { padding: 22px; }

.person-role {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,79,216,0.14);
  border: 1px solid rgba(255,79,216,0.24);
  color: rgba(255,255,255,0.8);
  font-size: .72rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.social-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.social-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,79,216,.35), transparent 65%);
}

.social-tag {
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 900;
  color: white;
}

.social-handle {
  color: var(--muted);
  font-weight: 700;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.info-item {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.info-item strong { display: block; font-size: 1rem; color: white; }
.info-item span { display: block; color: var(--muted); font-size: .78rem; margin-top: 6px; }

.gallery-preview {
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background:
    linear-gradient(rgba(12,0,28,0.28), rgba(12,0,28,0.82)),
    radial-gradient(circle at 20% 20%, rgba(255,79,216,0.42), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(102,232,255,0.20), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-purple);
  padding: 30px;
}

.pill-list { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 20px; }

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.095);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 800;
  font-size: 0.82rem;
}

.form { display: grid; gap: 14px; }

.form label {
  font-weight: 800;
  color: white;
  font-size: 0.88rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-top: 7px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  font: inherit;
  background: rgba(255,255,255,0.10);
  color: white;
  outline: none;
}

.form input::placeholder,
.form textarea::placeholder { color: rgba(255,255,255,0.45); }

.form select option { color: #1d102d; }
.form textarea { min-height: 122px; resize: vertical; }

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.45;
}

.checkbox input { width: auto; margin-top: 5px; }

.notice {
  padding: 17px 18px;
  border-radius: 18px;
  background: rgba(255,79,216,0.12);
  border: 1px solid rgba(255,79,216,0.26);
  color: rgba(255,255,255,0.84);
}

/* Calendar */
.calendar-shell { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; align-items: start; }

.calendar-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow-purple);
  backdrop-filter: blur(16px);
}

.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }

.calendar-toolbar button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
}

.calendar-title { text-align: center; font-weight: 900; letter-spacing: -0.03em; }

.calendar-weekdays,
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 9px; }

.calendar-weekdays {
  margin-bottom: 9px;
  color: rgba(255,255,255,0.52);
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
}

.calendar-day {
  min-height: 86px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.065);
  color: white;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.calendar-day:hover {
  transform: translateY(-2px);
  border-color: rgba(255,79,216,0.4);
  box-shadow: 0 0 22px rgba(255,79,216,0.13);
}

.calendar-day.is-empty { opacity: .22; cursor: default; }
.calendar-day.is-selected { border-color: rgba(255,79,216,0.85); box-shadow: 0 0 28px rgba(255,79,216,0.3); }
.day-number { font-weight: 900; font-size: .92rem; }

.day-status {
  font-size: .68rem;
  font-weight: 800;
  padding: 5px 7px;
  border-radius: 999px;
  width: fit-content;
}

.status-available { background: rgba(255,79,216,0.24); color: #ffd7f6; }
.status-reserved { background: rgba(255,107,139,0.19); color: #ffb1c3; }
.status-event { background: rgba(255,209,102,0.22); color: #ffe3a0; }
.status-consult { background: rgba(102,232,255,0.17); color: #c3f7ff; }

.legend { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.legend-item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
}

.dot { width: 12px; height: 12px; border-radius: 999px; }
.dot.available { background: var(--magenta); }
.dot.reserved { background: var(--red); }
.dot.event { background: var(--gold); }
.dot.consult { background: var(--cyan); }

.slot-grid { display: grid; gap: 12px; margin: 16px 0 20px; }

.slot-option {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.slot-option.is-selected { border-color: rgba(255,79,216,0.8); box-shadow: 0 0 24px rgba(255,79,216,0.18); }
.slot-option.is-disabled { opacity: .45; cursor: not-allowed; }

.summary-box {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,79,216,0.10);
  border: 1px solid rgba(255,79,216,0.24);
  margin-bottom: 18px;
  color: rgba(255,255,255,0.86);
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 0;
  background: #05000e;
  color: white;
  padding: 54px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 30px;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  font-size: .8rem;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.site-footer a { color: white; }
.white-muted { color: var(--muted); }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 0 22px rgba(37,211,102,0.44), 0 16px 36px rgba(0,0,0,0.25);
}

@media (max-width: 1110px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

@media (max-width: 940px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .neon-card { min-height: 340px; }

  .grid-4, .grid-3, .grid-2, .info-strip, .footer-inner, .calendar-shell {
    grid-template-columns: 1fr;
  }

  .calendar-day { min-height: 64px; padding: 7px; }
  .day-status { font-size: .58rem; padding: 4px 5px; }

  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .footer-bottom { flex-direction: column; }
  .site-header { position: relative; }
}