:root {
  --bg: #2C1810;
  --card: rgba(255, 255, 255, 0.06);
  --text: #F5EDE8;
  --muted: #C9A898;
  --gold: #C4614A;
  --gold-soft: rgba(196, 97, 74, 0.15);

  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.15);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Cormorant Garamond", serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  padding: 0;
}


a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  width: 100%;
}

.bio-page {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  min-height: 100vh;
  background:
    linear-gradient(
      180deg,
      rgba(44, 24, 16, 0)      0%,
      rgba(44, 24, 16, 0.20)   22%,
      rgba(44, 24, 16, 0.70)   40%,
      rgba(44, 24, 16, 0.96)   52%,
      var(--bg)                60%
    ),
    url('foto_jamile.png') top center / 100% auto no-repeat;
  background-color: var(--bg);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero {
  position: relative;
  height: clamp(340px, 92vw, 430px);
  overflow: hidden;
  background: transparent;
}

.hero__image {
  display: none;
}

.hero::after {
  display: none;
}

.logo-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.logo-wrapper {
  position: relative;
  width: clamp(130px, 36vw, 180px);
  height: clamp(130px, 36vw, 180px);
  border-radius: 50%;
  border: 7px solid #C4614A;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
  animation: logoPulse 3s ease-in-out infinite, float 7s ease-in-out infinite;
  overflow: hidden;
}

.logo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.55;
  filter: none;
  mix-blend-mode: multiply;
}

@keyframes logoPulse {
  0%   { box-shadow: 0 14px 32px rgba(0,0,0,0.30); border-color: #C4614A; }
  50%  { box-shadow: 0 20px 44px rgba(0,0,0,0.38); border-color: #E07A62; }
  100% { box-shadow: 0 14px 32px rgba(0,0,0,0.30); border-color: #C4614A; }
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-160px); }
  100% { transform: translateY(0px); }
}

@media (hover: hover) {
  .logo-img:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.48);
    border-color: #E0B882;
  }
}

.profile-text {
  text-align: center;
  margin: -16px 0 28px;
  padding: 0 24px;
}

.profile-name {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.8rem, 9vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.1;
  white-space: nowrap;
}

.profile-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.profile-title::before,
.profile-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
}

.icon {
  display: block;
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--brand {
  fill: currentColor;
  stroke: none;
}

.link-card:active {
  transform: scale(0.985);
}

.links {
  display: grid;
  gap: 24px;
  padding: 0 18px 28px;
}

.links-separator {
  width: 100%;
  max-width: 280px;
  height: 2px;
  margin: 6px auto 6px;
  background: linear-gradient(90deg, transparent, rgba(196, 154, 108, 0.3), transparent);
  position: relative;
}

.links-separator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(196, 154, 108, 0.12);
}

.link-card {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 16px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background 190ms ease;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 52%);
  opacity: 0;
  transition: opacity 190ms ease;
  pointer-events: none;
}

.link-card:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 154, 108, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  outline: none;
}

.link-card:focus-visible::before {
  opacity: 1;
}

@media (hover: hover) {
  .link-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(196, 154, 108, 0.2);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  }
  .link-card:hover::before {
    opacity: 1;
  }
}

.link-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.link-content {
  text-align: center;
  width: 100%;
  padding: 0 70px;
}

.link-content strong {
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 4px;
  text-align: center;
}

.link-content span {
  display: block;
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-align: center;
}

.addr-hidden {
  opacity: 0;
  height: 0;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  pointer-events: none;
  user-select: none;
}

.blink-unit {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 4px;
  text-align: center;
  animation: blinkUnit 2.8s ease-in-out infinite;
}

@keyframes blinkUnit {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
  .blink-unit { animation: none; opacity: 0.8; }
}

.footer {
  text-align: left;
  padding: 2px 24px 32px;
  position: relative;
}

.footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,108,0.3), transparent);
  margin-bottom: 20px;
}

.copyright {
  color: var(--text);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 520px) {
  body {
    padding-block: 40px;
    background: linear-gradient(135deg, #100805 0%, #2C1810 100%);
  }
  .bio-page {
    min-height: calc(100vh - 80px);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 15, 15, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(30, 41, 59, 0.2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 300ms ease;
  padding: 34px 24px 24px;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(196, 154, 108, 0.08);
  border: none;
  color: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease;
}

.modal-close:hover {
  background: rgba(196, 154, 108, 0.18);
}

button.link-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  outline: none;
}

/* WhatsApp */
.whatsapp-btn {
  border-color: transparent !important;
  background: rgba(37, 211, 102, 0.07) !important;
}

.whatsapp-btn .link-icon {
  color: #25D366;
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.25);
}

.animated-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  overflow: hidden;
}

.animated-border::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent 75%, var(--gold) 100%);
  animation: spinBorder 2.5s linear infinite;
}

@keyframes spinBorder {
  to { transform: rotate(360deg); }
}

/* Google */
.google-btn .link-icon {
  color: #FBBC04;
  background: rgba(251, 188, 4, 0.10);
  border-color: rgba(251, 188, 4, 0.22);
}

/* Uber */
.uber-wrapper {
  position: relative;
  padding-bottom: 18px;
}

.uber-orbit {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 20px;
  pointer-events: none;
  z-index: 20;
  overflow: visible;
}

.uber-orbit::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,108,0.25), transparent);
  transform: translateY(-50%);
}

.uber-car {
  position: absolute;
  width: 36px;
  height: 16px;
  top: 2px;
  left: 0;
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
  animation: uberDrive 16s linear infinite;
}

@keyframes uberDrive {
  0%   { left: 0;                  transform: scaleX(1); }
  48%  { left: calc(100% - 36px);  transform: scaleX(1); }
  50%  { left: calc(100% - 36px);  transform: scaleX(-1); }
  98%  { left: 0;                  transform: scaleX(-1); }
  100% { left: 0;                  transform: scaleX(1); }
}

/* Instagram */
.instagram-btn .link-icon {
  background: linear-gradient(135deg, rgba(131,58,180,0.12), rgba(253,29,29,0.08), rgba(252,176,69,0.12));
  border-color: rgba(200, 80, 120, 0.20);
  padding: 0;
  overflow: hidden;
}

/* Cardápio */
.cardapio-btn {
  background: linear-gradient(135deg, rgba(196,154,108,0.12), rgba(196,154,108,0.04));
  border-color: rgba(196,154,108,0.28) !important;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
}

.cardapio-btn .link-icon {
  color: var(--gold);
  background: rgba(196,154,108,0.12);
  border-color: rgba(196,154,108,0.28);
}

.cardapio-modal {
  background: var(--bg);
  border: 1px solid rgba(196,154,108,0.2);
}

.cardapio-title {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 4px;
  text-align: center;
}

.cardapio-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}

.cardapio-category {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196,154,108,0.12);
}

.cardapio-category:last-of-type {
  border-bottom: none;
}

.cardapio-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Great Vibes', cursive;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 12px;
}

.cardapio-cat-title .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
}

.cardapio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cardapio-list li {
  font-family: 'Raleway', sans-serif;
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.cardapio-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
  font-size: 0.7rem;
  top: 1px;
}

.cardapio-cta {
  display: block;
  margin-top: 24px;
  padding: 14px 20px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-md);
  color: #25D366;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease;
}

.cardapio-cta:hover {
  background: rgba(37,211,102,0.2);
  border-color: rgba(37,211,102,0.5);
}

.blink-promo {
  display: block;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-top: 6px;
  margin-bottom: 4px;
  animation: blink-fade 1.5s ease-in-out infinite;
}

@keyframes blink-fade {
  0%,  100% { opacity: 1; }
  50%        { opacity: 0; }
}

.resultados-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.resultado-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,154,108,0.2);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: background 200ms ease, border-color 200ms ease;
}

.resultado-item:hover {
  background: rgba(196,154,108,0.12);
  border-color: rgba(196,154,108,0.5);
}

.resultado-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.resultado-text {
  flex: 1;
}

.resultado-text strong {
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.resultado-text span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.resultado-arrow {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}
