/* ============================================
   Bio / Links — layout próximo de
   priscilazillo.com.br/bio (exemplos 1 e 2)
   ============================================ */

:root {
  --navy: #151d22;
  --navy-2: #1f252c;
  --navy-3: #282d32;
  --shell: #131415;
  --card: #000;
  --line: #2a3844;
  --gold: #c1a889;
  --gold-2: #927e66;
  --gold-3: #fbd19e;
  --gold-soft: #e8d5b5;
  --text: #f2f2f2;
  --text-soft: #efefef;
  --muted: #5a6b77;
  --font: "Lato", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --max: 1066px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(61deg, #282d32 17%, #151d22 91%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ========== TOPO ========== */
.topo {
  position: relative;
  padding: 1.75rem 1.25rem 0;
  overflow: visible;
}

.topo__stage {
  position: relative;
  width: min(100%, 1060px);
  margin: 0 auto;
  min-height: clamp(420px, 52vw, 520px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Forma dourada curva (como a referência) */
.topo__shape {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 58%;
  height: calc(100% + 40px);
  border-radius: 0 280px 0 0;
  background: linear-gradient(275deg, #c1a889 10%, #927e66 35%, #2c261f 100%);
  z-index: 0;
  pointer-events: none;
}

.topo__names {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.topo__name {
  position: absolute;
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.02em;
}

.topo__name--dark {
  left: 0;
  top: 22%;
  font-size: clamp(3.75rem, 9vw, 6.4rem);
  color: #1c1814;
  max-width: none;
  white-space: nowrap;
}

.topo__name--gold {
  right: 0;
  top: 38%;
  font-size: clamp(3.25rem, 8vw, 5.8rem);
  color: var(--gold);
  font-style: italic;
  text-align: right;
  max-width: none;
  white-space: nowrap;
}

.topo__photo {
  position: relative;
  z-index: 3;
  width: min(52%, 520px);
  margin: 0 auto;
  line-height: 0;
  overflow: visible;
  padding: 0;
}

.topo__photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  background: transparent !important;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.32));
  user-select: none;
  pointer-events: none;
}

.topo__role {
  position: absolute;
  top: 16%;
  right: 0;
  z-index: 2;
  width: min(245px, 23%);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.55;
  text-transform: uppercase;
}

.topo__role strong {
  color: var(--gold-3);
  font-weight: 800;
}

.topo__mobile-title,
.topo__role-mobile {
  display: none;
}

/* ========== LINKS / CARDS ========== */
.links {
  position: relative;
  z-index: 5;
  width: min(100% - 1.5rem, var(--max));
  margin: -1.5rem auto 0;
  padding: 1.6rem 1.35rem;
  border-radius: 26px;
  background: var(--shell);
}

.links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.35rem;
}

.card {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 141px;
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid var(--line);
  outline: 2px solid transparent;
  transition: outline 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  outline-color: #fef2e4;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.28);
  border-color: rgba(254, 242, 228, 0.35);
}

.card__bg {
  position: absolute;
  inset: 0;
  background: #000;
  background-size: cover;
  background-position: center;
}

.card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(36deg, rgba(0, 0, 0, 0.62) 26%, rgba(0, 0, 0, 0) 52%),
    linear-gradient(91deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0) 55%);
}

.card__bg--face {
  background-position: center top;
}

.card__bg--ig {
  background: linear-gradient(135deg, #3a2e28 0%, #1a1512 100%);
}

.card__bg--ig::after {
  background: linear-gradient(91deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 70%);
}

.card__bg--wa {
  background: linear-gradient(135deg, #1e3328 0%, #121a16 100%);
}

.card__bg--wa::after {
  background: linear-gradient(91deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 70%);
}

.card__text {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.1rem 0.75rem 1.1rem 1.4rem;
  max-width: calc(100% - 68px);
}

.card__text h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f2f2f2;
  line-height: 1.2;
}

.card__text p {
  max-width: 15.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: #f2f2f2;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.card__text p b {
  color: var(--gold-3);
  font-weight: 900;
}

.card__arrow {
  position: relative;
  z-index: 2;
  flex: 0 0 68px;
  min-height: 141px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem 1.65rem;
  color: #d9bd95;
  background: linear-gradient(160deg, rgba(42, 56, 68, 0.96), rgba(21, 29, 34, 0.96));
  border-left: 1px solid rgba(251, 209, 158, 0.2);
  transition: background 0.3s ease, color 0.3s ease;
}

.card__arrow::before {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 10px;
  width: 13px;
  height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' fill='none'%3E%3Cpath stroke='%23d9bd95' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.4' d='M10.3 9.75H23.62m0 0V23.07m0-13.32L10.3 23.07'/%3E%3C/svg%3E")
    center / contain no-repeat;
  opacity: 0.72;
}

.card__icon {
  display: block;
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
}

.card:hover .card__arrow {
  color: #fff4df;
  background: linear-gradient(160deg, #3f3f3f, #2a3844);
}

/* ========== SOBRE ========== */
.sobre {
  position: relative;
  padding: 2.5rem 1.25rem 0;
  overflow: visible;
}

.sobre__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem 2rem;
  align-items: center;
  min-height: 480px;
}

.sobre__copy {
  padding: 2rem 0 3rem;
  max-width: 448px;
}

.sobre__label {
  color: var(--gold-3);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.sobre__name {
  position: relative;
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-3);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.sobre__name::after {
  content: "";
  display: block;
  width: 85px;
  height: 1px;
  background: var(--gold-2);
  margin-top: 0.45rem;
}

.sobre__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sobre__text p {
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.sobre__text strong {
  font-weight: 900;
  color: #fff;
}

.sobre__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  align-self: end;
  line-height: 0;
  overflow: visible;
  padding-left: 0.5rem;
}

/* Arco dourado atrás da foto (exemplo 2) */
.sobre__arc {
  position: absolute;
  left: -8%;
  bottom: 0;
  width: calc(100% + 30%);
  height: 92%;
  border-radius: 280px 0 0 0;
  background: linear-gradient(90deg, #927e66 0%, #2c261f 100%);
  z-index: 0;
  pointer-events: none;
}

.sobre__photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  background: transparent !important;
  user-select: none;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.25));
}

/* Footer */
.footer {
  background: #1f252c;
  padding: 2rem 1rem;
  text-align: center;
}

.footer p {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(239, 239, 239, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .topo {
    padding: 1.35rem 1rem 0;
    background: #1f252c;
  }

  .topo__stage {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0.5rem;
  }

  .topo__shape {
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 360px);
    height: 58%;
    bottom: 0;
    border-radius: 0 100px 0 0;
    background: linear-gradient(90deg, #83715b 0%, #c1a889 34%, #927e66 61%, #493e30 100%);
  }

  .topo__names,
  .topo__role {
    display: none;
  }

  .topo__mobile-title {
    display: block;
    position: relative;
    z-index: 2;
    text-align: center;
    order: -1;
    margin-bottom: 0.75rem;
  }

  .topo__mobile-title span {
    display: block;
    font-family: var(--display);
    font-size: clamp(2.4rem, 11vw, 3.2rem);
    font-weight: 500;
    color: var(--gold-3);
    line-height: 1;
  }

  .topo__mobile-title em {
    display: block;
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(1.5rem, 7vw, 2rem);
    color: var(--gold);
    margin-top: 0.15rem;
  }

  .topo__photo {
    width: min(72vw, 280px);
  }

  .topo__role-mobile {
    display: block;
    max-width: 440px;
    margin: 1rem auto 0;
    padding: 1rem 1.25rem;
    border-top: 1px solid #3d3d3d;
    border-bottom: 1px solid #3d3d3d;
    color: var(--muted);
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .topo__role-mobile strong {
    color: var(--gold-3);
  }

  .links {
    margin-top: 1.25rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }

  .links__grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .card {
    min-height: 110px;
    border-radius: 15px;
  }

  .card__arrow {
    flex-basis: 52px;
    min-height: 110px;
    padding: 0.7rem 0.25rem 1.45rem;
  }

  .card__icon {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
  }

  .card__arrow::before {
    right: 7px;
    bottom: 7px;
    width: 11px;
    height: 11px;
  }

  .card__text {
    padding: 0.9rem 0.5rem 0.9rem 1rem;
    max-width: calc(100% - 52px);
  }

  .card__text h2 {
    font-size: 1rem;
  }

  .card__text p {
    font-size: 0.82rem;
    max-width: 13rem;
  }

  .sobre__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .sobre__copy {
    max-width: none;
    padding: 1.5rem 0 2rem;
    order: 1;
  }

  .sobre__name::after {
    margin-inline: auto;
  }

  .sobre__photo {
    order: 0;
    justify-self: center;
    max-width: 300px;
  }

  .sobre__arc {
    left: -10%;
    width: 120%;
    height: 88%;
    border-radius: 180px 180px 0 0;
  }
}

@media (max-width: 480px) {
  .topo__photo {
    width: min(78vw, 250px);
  }

  .card__text p {
    max-width: 11.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
