:root {
  --background: #f5efe7;
  --surface: #fffaf4;
  --surface-dark: #211d1a;

  --text: #211d1a;
  --text-soft: #756b63;

  --accent: #c69b68;
  --accent-dark: #8a6041;

  --border: rgba(47, 41, 37, 0.12);

  --shadow:
    0 18px 50px rgba(47, 41, 37, 0.09);

  --radius-large: 28px;
  --radius-medium: 14px;

  --page-width: 620px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%,
      rgba(198, 155, 104, 0.19),
      transparent 32rem),
    linear-gradient(180deg,
      #f4ece2 0%,
      #faf6f0 48%,
      #f1e9df 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.page {
  width: min(calc(100% - 32px), var(--page-width));
  margin: 0 auto;
  padding: 48px 0 24px;
}

.profile {
  text-align: center;
}

.profile__image-wrapper {
  position: relative;

  width: 220px;
  height: 220px;

  margin: 0 auto 30px;
  padding: 7px;

  border: 1px solid rgba(170, 125, 77, 0.55);
  border-radius: 50%;

  background: #dfc4a4;

  box-shadow:
    0 18px 45px rgba(47, 41, 37, 0.14),
    0 0 0 8px rgba(255, 250, 244, 0.7);
}

.profile__image-wrapper::after {
  content: "";

  position: absolute;
  inset: 14px;

  border: 1px solid rgba(255, 241, 215, 0.75);
  border-radius: 50%;

  pointer-events: none;
}

.profile__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  margin-top: 4px;

  font-size: clamp(2.65rem, 9vw, 4.1rem);

  letter-spacing: -0.05em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 7vw, 3.2rem);
  letter-spacing: -0.035em;
}

.profile__description {
  max-width: 480px;

  margin: 18px auto 34px;

  color: var(--text-soft);

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 3.5vw, 1.18rem);
  font-style: italic;

  line-height: 1.65;
}

.links {
  display: grid;
  gap: 11px;

  width: 100%;
  max-width: 560px;

  margin: 0 auto;
}

.link-card {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 66px;

  padding: 13px 15px 13px 20px;

  border: 1px solid rgba(138, 96, 65, 0.18);
  border-radius: 17px;

  background:
    linear-gradient(135deg,
      rgba(232, 217, 202, 0.88),
      rgba(248, 241, 233, 0.96));

  box-shadow:
    0 8px 24px rgba(47, 41, 37, 0.055);

  color: var(--text);

  font-size: 0.93rem;
  font-weight: 600;

  text-align: left;
  text-decoration: none;

  backdrop-filter: blur(8px);

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.link-card small {
  display: block;

  margin-bottom: 2px;

  color: #d8b991;

  font-size: 0.64rem;
  font-weight: 700;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.link-card--featured {
  min-height: 76px;

  border-color: rgba(255, 255, 255, 0.08);

  background:
    linear-gradient(135deg,
      #241f1b 0%,
      #352b25 100%);

  color: #fffaf4;

  box-shadow:
    0 14px 34px rgba(35, 28, 24, 0.19);
}

.link-card:hover {
  transform: translateY(-2px);

  border-color: rgba(154, 101, 82, 0.36);

  background:
    linear-gradient(135deg,
      rgba(220, 199, 181, 0.98),
      rgba(250, 244, 237, 1));

  box-shadow:
    0 14px 32px rgba(47, 41, 37, 0.1);
}

.link-card:hover .link-card__arrow {
  transform: rotate(8deg) scale(1.05);
  background: rgba(154, 101, 82, 0.16);
}

.link-card--featured:hover {
  background:
    linear-gradient(135deg,
      #302923 0%,
      #49382f 100%);
}

.link-card--featured:hover .link-card__arrow {
  background: rgba(255, 255, 255, 0.16);
}

.link-card:focus-visible {
  outline: 3px solid rgba(154, 101, 82, 0.42);
  outline-offset: 4px;
}

.link-card__arrow {
  display: grid;
  place-items: center;

  flex: 0 0 auto;

  width: 34px;
  height: 34px;

  margin-left: 16px;

  border-radius: 50%;

  background: rgba(154, 101, 82, 0.09);

  color: var(--accent-dark);

  font-size: 1rem;
  font-weight: 400;

  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.link-card--featured .link-card__arrow {
  background: rgba(255, 255, 255, 0.1);
  color: #fffaf4;
}

.about {
  position: relative;

  display: grid;
  gap: 24px;

  margin-top: 76px;
  padding: 22px;

  overflow: hidden;

  border: 1px solid rgba(138, 96, 65, 0.15);
  border-radius: 28px;

  background:
    linear-gradient(145deg,
      rgba(255, 252, 247, 0.96),
      rgba(232, 216, 201, 0.72));

  box-shadow:
    0 22px 55px rgba(47, 41, 37, 0.1);
}

.about::before {
  content: "";

  position: absolute;
  top: -70px;
  left: -70px;

  width: 190px;
  height: 190px;

  border-radius: 50%;

  background: rgba(198, 155, 104, 0.13);

  pointer-events: none;
}

.about__content {
  position: relative;
  z-index: 1;

  align-self: center;

  padding: 10px 6px 4px;

  text-align: left;
}

.about h2 {
  max-width: 330px;

  font-size: clamp(2.3rem, 7vw, 3.5rem);
  line-height: 1;
}

.about__content p:not(.eyebrow) {
  margin: 17px 0 0;

  color: var(--text-soft);

  font-size: 0.96rem;
  line-height: 1.8;
}

.about__image-wrapper {
  position: relative;

  width: 100%;
  min-width: 0;

  overflow: hidden;
  aspect-ratio: 4 / 5;

  border-radius: 22px;

  box-shadow:
    0 16px 35px rgba(47, 41, 37, 0.13);
}

.about__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  transition: transform 500ms ease;
}

.about:hover .about__image {
  transform: scale(1.025);
}

.footer {
  width: min(calc(100% - 32px), var(--page-width));
  margin: 36px auto 0;
  padding: 30px 0 38px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.footer p {
  margin: 4px 0;
}

.footer>p:first-child {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.footer a {
  display: inline-block;
  margin: 4px 0 16px;
  color: var(--accent-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.footer__copyright {
  font-size: 0.78rem;
}

@media (min-width: 720px) {
  .page {
    padding-top: 72px;
  }

  .about {
    grid-template-columns:
      minmax(0, 1fr) minmax(0, 0.86fr);

    align-items: center;
    gap: 36px;
    padding: 32px;
  }

  .about__content {
    padding: 12px 0 12px 8px;
  }

  .about__image-wrapper {
    width: 100%;
    min-width: 0;
    min-height: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
/* ========================================
   IDENTIDADE VISUAL FINAL — ANDRESSA
======================================== */

:root {
  --background-dark: #291720;
  --background-medium: #522b3a;

  --surface: #fff8f3;
  --surface-soft: #f6e9e7;

  --text: #291f21;
  --text-soft: #716164;

  --rose: #b96e7d;
  --rose-dark: #824454;

  --gold: #d5ae7b;
  --green: #245c4c;

  --border: rgba(130, 68, 84, 0.2);
}

/* FUNDO PRINCIPAL */

body {
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(36, 92, 76, 0.32),
      transparent 30rem
    ),
    radial-gradient(
      circle at 10% 30%,
      rgba(185, 110, 125, 0.28),
      transparent 27rem
    ),
    linear-gradient(
      160deg,
      var(--background-dark) 0%,
      var(--background-medium) 52%,
      #321b25 100%
    );

  background-attachment: fixed;
}

/* FOTO PRINCIPAL */

.profile__image-wrapper {
  border: 2px solid var(--gold);

  background:
    linear-gradient(
      145deg,
      var(--gold),
      var(--rose)
    );

  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.32),
    0 0 0 9px rgba(255, 248, 243, 0.14);
}

.profile__image-wrapper::after {
  border-color: rgba(255, 238, 215, 0.76);
}

/* APRESENTAÇÃO */

.profile .eyebrow {
  color: #e9bdc7;
}

.profile h1 {
  color: #fffaf7;

  text-shadow:
    0 5px 24px rgba(0, 0, 0, 0.22);
}

.profile__description {
  color: #ead8dd;
}

/* ÁREA DOS LINKS */

.links {
  margin-top: 8px;
}

/* TODOS OS BOTÕES COM A MESMA BASE */

.link-card {
  min-height: 74px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  background:
    linear-gradient(
      135deg,
      rgba(255, 248, 243, 0.98),
      rgba(246, 233, 231, 0.96)
    );

  color: var(--text);

  box-shadow:
    0 13px 32px rgba(0, 0, 0, 0.18);

  backdrop-filter: blur(10px);
}

/* Remove as cores diferentes dos botões */

.links .link-card:nth-child(2),
.links .link-card:nth-child(3),
.links .link-card:nth-child(4),
.links .link-card:nth-child(5),
.links .link-card:last-child {
  border-color: rgba(255, 255, 255, 0.25);

  background:
    linear-gradient(
      135deg,
      rgba(255, 248, 243, 0.98),
      rgba(246, 233, 231, 0.96)
    );

  color: var(--text);
}

/* BOTÃO PRINCIPAL */

.link-card--featured {
  min-height: 84px;

  border-color: rgba(255, 222, 227, 0.34);

  background:
    linear-gradient(
      135deg,
      var(--rose-dark) 0%,
      var(--rose) 100%
    );

  color: #ffffff;

  box-shadow:
    0 18px 40px rgba(36, 14, 23, 0.36);
}

.link-card--featured small {
  color: #f4d5dc;
}

.link-card--featured span {
  color: inherit;
}

/* SETAS */

.link-card__arrow {
  background: rgba(130, 68, 84, 0.12);
  color: var(--rose-dark);
}

.link-card--featured .link-card__arrow {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

/* EFEITOS */

.link-card:hover {
  transform: translateY(-3px);

  border-color: rgba(213, 174, 123, 0.65);

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #f6e4e4
    );

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.25);
}

.link-card--featured:hover {
  background:
    linear-gradient(
      135deg,
      #743848,
      #c57b89
    );
}

/* SEÇÃO SOBRE */

.about {
  border: 1px solid rgba(255, 255, 255, 0.2);

  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 243, 0.98),
      rgba(244, 225, 226, 0.97)
    );

  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.28);
}

.about::before {
  background:
    linear-gradient(
      145deg,
      rgba(185, 110, 125, 0.2),
      rgba(213, 174, 123, 0.17)
    );
}

.about .eyebrow {
  color: var(--rose-dark);
}

.about h2 {
  color: var(--text);
}

.about__content p:not(.eyebrow) {
  color: var(--text-soft);
}

/* RODAPÉ */

.footer {
  border-top-color: rgba(255, 255, 255, 0.2);
  color: #d8c5ca;
}

.footer > p:first-child {
  color: #fffaf7;
}

.footer a {
  color: #f0bec9;
}