:root {
  --navy: #071521;
  --navy-2: #0c2235;
  --navy-3: #102d44;
  --gold: #c99a34;
  --gold-light: #e7c46b;
  --white: #ffffff;
  --muted: #b7c1ca;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(231, 196, 107, 0.25);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 154, 52, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(16, 45, 68, 0.95), transparent 38%),
    linear-gradient(135deg, #050b12 0%, #071521 48%, #0d2538 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(10px);
}

body::before {
  width: 380px;
  height: 380px;
  left: -150px;
  top: 8%;
  background: rgba(201, 154, 52, 0.12);
  animation: floatGlow 13s ease-in-out infinite alternate;
}

body::after {
  width: 320px;
  height: 320px;
  right: -130px;
  bottom: 6%;
  background: rgba(255, 255, 255, 0.06);
  animation: floatGlow 16s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, -30px, 0) scale(1.08); }
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
}

#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bio-page {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 38px 16px;
}

.bio-card {
  width: min(100%, 520px);
  position: relative;
  isolation: isolate;
  padding: 28px 18px 24px;
  border: 1px solid rgba(231, 196, 107, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(7, 21, 33, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.bio-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(231, 196, 107, 0.75), transparent 28%, rgba(255,255,255,0.17), transparent 70%, rgba(231, 196, 107, 0.36));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.bio-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  top: -130px;
  right: -115px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 196, 107, 0.22), transparent 62%);
  z-index: -2;
}

.brand-topline {
  width: max-content;
  margin: 0 auto 14px;
  padding: 7px 14px;
  border: 1px solid rgba(231, 196, 107, 0.35);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: rgba(7, 21, 33, 0.55);
}

.logo-wrap {
  width: 138px;
  height: 138px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  border: 1px solid rgba(231, 196, 107, 0.42);
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,255,255,0.88));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28), 0 0 0 8px rgba(231, 196, 107, 0.05);
}

.brand-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  display: block;
  border-radius: 22px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
  font-size: clamp(2.05rem, 8vw, 3.08rem);
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 0 35px rgba(231, 196, 107, 0.12);
}

.tagline {
  margin: 12px auto 8px;
  max-width: 390px;
  text-align: center;
  color: var(--gold-light);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.intro {
  max-width: 410px;
  margin: 0 auto 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.luxury-slider {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 12px 15px;
  border: 1px solid rgba(231, 196, 107, 0.26);
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(7, 21, 33, 0.86), rgba(255, 255, 255, 0.08), rgba(7, 21, 33, 0.86));
  overflow: hidden;
}

.luxury-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(231, 196, 107, 0.13), transparent);
  transform: translateX(-100%);
  animation: shimmer 4.6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 20% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.slider-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(231, 196, 107, 0.13);
}

.slider-icon svg {
  width: 15px;
  height: 15px;
  fill: var(--gold-light);
}



#sliderText {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 750;
  text-align: center;
  letter-spacing: 0.01em;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#sliderText.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.link-list {
  display: grid;
  gap: 11px;
}

.bio-link {
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr 28px;
  align-items: center;
  min-height: 66px;
  gap: 12px;
  padding: 12px 15px 12px 12px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(231, 196, 107, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.96), rgba(12, 34, 53, 0.94)),
    var(--navy);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.045);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.bio-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(231, 196, 107, 0.18), transparent 42%, rgba(255,255,255,0.055));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.bio-link::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 120%;
  left: -95px;
  top: -10%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.bio-link:hover,
.bio-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(231, 196, 107, 0.62);
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.98), rgba(16, 45, 68, 0.98)),
    var(--navy);
  box-shadow: 0 19px 44px rgba(0, 0, 0, 0.34), 0 0 28px rgba(201, 154, 52, 0.18), inset 0 0 0 1px rgba(231, 196, 107, 0.08);
  outline: none;
}

.bio-link:hover::before,
.bio-link:focus-visible::before {
  opacity: 1;
}

.bio-link:hover::after,
.bio-link:focus-visible::after {
  left: 120%;
}

.bio-link:active {
  transform: translateY(-1px) scale(0.99);
}

.bio-link span,
.bio-link i {
  position: relative;
  z-index: 1;
}

.link-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(231, 196, 107, 0.22);
}

.link-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold-light);
}

.link-icon {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.link-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0 5%, #fdf497 5% 15%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border: 0;
}

.link-icon.instagram svg { fill: #ffffff; }
.link-icon.youtube svg { fill: #ff0000; }
.link-icon.facebook svg { fill: #1877f2; }
.link-icon.linkedin svg { fill: #0a66c2; }
.link-icon.whatsapp svg { fill: #25d366; }
.link-icon.email svg { fill: #d44638; }
.link-icon.call svg { fill: #16a34a; }
.link-icon.website svg,
.link-icon.tower svg { fill: #c99a34; }

.bio-link:hover .link-icon,
.bio-link:focus-visible .link-icon {
  transform: scale(1.04);
  box-shadow: 0 0 18px rgba(231, 196, 107, 0.18);
}

.bio-link b {
  display: block;
  font-size: 0.98rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.bio-link small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
  word-break: break-word;
}

.bio-link i {
  font-style: normal;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(231, 196, 107, 0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}

.bio-link:hover i,
.bio-link:focus-visible i {
  transform: translateX(3px);
  background: rgba(231, 196, 107, 0.22);
}

.featured {
  border-color: rgba(231, 196, 107, 0.55);
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.98), rgba(201, 154, 52, 0.16)),
    var(--navy);
}


.contact-highlight {
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.98), rgba(37, 211, 102, 0.12)),
    var(--navy);
}


.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 20px 0 16px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 7px 11px;
  border-radius: 999px;
  color: rgba(255,255,255,0.86);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(231, 196, 107, 0.22);
  font-size: 0.75rem;
  font-weight: 700;
}

footer {
  text-align: center;
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  line-height: 1.5;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 8;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 8px rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(255,255,255,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulseWhatsApp 2.4s ease-in-out infinite;
}

.float-whatsapp:hover,
.float-whatsapp:focus-visible {
  transform: translateY(-4px) scale(1.04);
  outline: none;
  box-shadow: 0 24px 48px rgba(0,0,0,0.42), 0 0 0 12px rgba(37, 211, 102, 0.12);
}

.float-whatsapp svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

@keyframes pulseWhatsApp {
  0%, 100% { box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 8px rgba(37, 211, 102, 0.12); }
  50% { box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 15px rgba(37, 211, 102, 0.055); }
}

.curtain {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: #050b12;
  overflow: hidden;
}

.curtain-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.5%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 12px, rgba(0,0,0,0.12) 12px 24px),
    linear-gradient(145deg, #071521, #0d2740 48%, #050b12);
  box-shadow: inset 0 0 80px rgba(0,0,0,0.45);
  transition: transform 1.55s cubic-bezier(.77, 0, .18, 1), opacity 0.45s ease 1.1s;
}

.curtain-left {
  left: 0;
  border-right: 2px solid rgba(231, 196, 107, 0.52);
}

.curtain-right {
  right: 0;
  border-left: 2px solid rgba(231, 196, 107, 0.52);
}

.curtain-emblem {
  position: relative;
  z-index: 2;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(231, 196, 107, 0.52);
  background: rgba(7, 21, 33, 0.88);
  box-shadow: 0 0 60px rgba(201, 154, 52, 0.16);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.curtain-emblem span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}

.curtain-emblem small {
  position: absolute;
  bottom: 24px;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

.curtain.open {
  background: transparent;
  transition: background 0.4s ease 1.1s, visibility 0s linear 1.7s;
  visibility: hidden;
}

.curtain.open .curtain-left {
  transform: translateX(-102%);
  opacity: 0.75;
}

.curtain.open .curtain-right {
  transform: translateX(102%);
  opacity: 0.75;
}

.curtain.open .curtain-emblem {
  opacity: 0;
  transform: scale(0.86);
}

.reveal-stack {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

body.is-ready .reveal-stack {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.is-ready .bio-link {
  animation: linkReveal 0.62s ease both;
}

body.is-ready .bio-link:nth-child(1) { animation-delay: 0.12s; }
body.is-ready .bio-link:nth-child(2) { animation-delay: 0.18s; }
body.is-ready .bio-link:nth-child(3) { animation-delay: 0.24s; }
body.is-ready .bio-link:nth-child(4) { animation-delay: 0.30s; }
body.is-ready .bio-link:nth-child(5) { animation-delay: 0.36s; }
body.is-ready .bio-link:nth-child(6) { animation-delay: 0.42s; }
body.is-ready .bio-link:nth-child(7) { animation-delay: 0.48s; }
body.is-ready .bio-link:nth-child(8) { animation-delay: 0.54s; }
body.is-ready .bio-link:nth-child(9) { animation-delay: 0.60s; }

@keyframes linkReveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 700px) {
  .bio-page {
    padding: 54px 22px;
  }

  .bio-card {
    padding: 34px 30px 28px;
  }

  .logo-wrap {
    width: 150px;
    height: 150px;
  }

  .brand-logo {
    width: 122px;
    height: 122px;
  }
}

@media (max-width: 390px) {
  .bio-card {
    border-radius: 28px;
    padding-inline: 13px;
  }

  .bio-link {
    grid-template-columns: 42px 1fr 24px;
    gap: 9px;
    min-height: 64px;
    padding-right: 11px;
  }

  .link-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .bio-link b {
    font-size: 0.92rem;
  }

  .bio-link small {
    font-size: 0.735rem;
  }

  .float-whatsapp {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .curtain {
    display: none;
  }

  .reveal-stack {
    opacity: 1;
    transform: none;
  }
}
