/* =============================================
   FUENTES PERSONALIZADAS
   ============================================= */

/* Playfair Display — cargada desde Google Fonts en el <head> de cada HTML */

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   TIPOGRAFÍA — Erode para títulos
   ============================================= */
h1, h2, h3, h4, h5, h6,
.hero__title,
.section__title,
.why__card-title,
.examples__settlement-title,
.recovery__title,
.critical__title,
.focus__card-title,
.page-hero__title,
.team__card-name,
.location__state,
.contact-page__title,
.contact-card__title,
.profile__badge-name,
.fee-badge__title {
  font-family: 'Playfair Display', Georgia, serif;
}

/* =============================================
   UTILITIES
   ============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 80px 0; }
.section__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0f0f0f;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section__subtitle { font-size: 1rem; color: #555; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: inherit;
}
.btn--primary { background: #B18376; color: #fff; border-color: #B18376; }
.btn--primary:hover {
  background: #9a6e63; border-color: #9a6e63;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(177,131,118,0.4);
}
.btn--outline { background: transparent; color: #B18376; border-color: #B18376; }
.btn--outline:hover {
  background: #B18376; color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(177,131,118,0.4);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: #3A4C63;
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.25); }
.nav { display: flex; align-items: center; gap: 40px; height: 124px; }
.nav__logo { flex-shrink: 0; margin-right: auto; }
.nav__logo-img { height: 118px; width: auto; object-fit: contain; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.85);
  padding: 6px 14px; border-radius: 6px;
  transition: color 0.2s, background-color 0.2s;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav__link--active { color: #fff; font-weight: 600; }
.nav__cta { flex-shrink: 0; padding: 10px 24px; font-size: 0.9rem; }
.nav__hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.nav__hamburger span {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 2px; transition: all 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; background: #3A4C63;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px 28px;
}
.nav__mobile.open { display: block; }
.nav__mobile-links { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile-link {
  font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color 0.2s;
}
.nav__mobile-link:hover { color: #fff; }
.nav__mobile-cta { display: inline-block; margin-top: 16px; text-align: center; width: 100%; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background-color: #3A4C63;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  padding-top: 124px;
  padding-bottom: 20px;
}

/* Left: text */
.hero__content {
  position: relative;
  z-index: 1;
  padding: 40px 0 20px;
}
.hero__title {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero__subtitle {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 380px;
  font-family: 'Inter', sans-serif;
}
.hero__btn { font-size: 0.95rem; padding: 15px 34px; }

/* Right: image card + fee badge */
.hero__visual {
  position: relative;
  margin-top: -124px;
  padding-bottom: 0;
}

/* El card tiene fondo del mismo color que el hero — crea la "bandeja" */
.hero__img-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  position: relative;
  background-color: #3A4C63;
}

.hero__img-card > img {
  width: 100%;
  height: 58vh;
  min-height: 400px;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Fee badge — gradiente sobre la foto + bloque sólido debajo */
.fee-badge {
  position: relative;
  z-index: 3;
  background: transparent;
  padding: 0;
}

/* La imagen NO tiene overflow hidden para que el blur funcione correctamente */
.hero__img-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  position: relative;
  background-color: #3A4C63;
}

.hero__img-card > img {
  width: 100%;
  height: 58vh;
  min-height: 400px;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* El ::after ya no se usa — el blur lo maneja el fee-badge directamente */
.hero__img-card::after {
  display: none;
}

/* Fee badge con backdrop-filter blur — igual al original */
.fee-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 22px 28px 28px;
  background: rgba(45, 60, 80, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 0 0 16px 16px;
}

.fee-badge__label {
  font-size: 1.65rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: 'Playfair Display', Georgia, serif;
}

.fee-badge__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}

/* ocultar elementos del layout anterior */
.hero__bg, .hero__overlay,
.fee-badge__inner, .fee-badge__bg,
.fee-badge__overlay, .fee-badge__content { display: none; }

/* =============================================
   WHY CHOOSE
   ============================================= */
.why {
  background: #ffffff;
  padding: 100px 0;
}
.why__header {
  text-align: left;
  margin-bottom: 0;
}
.why__header .section__title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #3A4C63;
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.12;
}
.why__header .section__subtitle {
  font-size: 1.05rem;
  color: #3A4C63;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 100%;
  margin: 0;
}

.why__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
}

.why__card:hover {
  transform: none;
  box-shadow: none;
}

.why__card-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.why__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why__card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}

.why__card-title {
  font-size: 1.30rem;
  font-weight: 700;
  color: #3A4C63;
  margin-bottom: 4px;
  font-family: 'Playfair Display', Georgia, serif;
}

.why__card-text {
  font-size: 1.05rem;
  color: #3A4C63;
  line-height: 1.65;
}

/* =============================================
   EXAMPLES
   ============================================= */
.examples {
  background: #f3efed;
  padding: 18px 0 18px;
}

.examples .container {
  max-width: 1290px;
}

.examples__main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #3A4C63;
  text-align: center;
  margin: 0 0 10px;
}

.examples__title-line {
  width: 174px;
  margin: 0 auto 46px;
  border-bottom: 4px dotted #ba8c7d;
}

.examples__table {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.examples__row-block {
  display: grid;
  grid-template-columns: 295px 1fr;
  column-gap: 96px;
  align-items: center;
  padding: 0;
}

.examples__row-separator {
  display: none;
}

.examples__settlement-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #3A4C63;
  white-space: nowrap;
}

.examples__cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2px minmax(0, 1fr);
  column-gap: 48px;
  align-items: stretch;
}

.examples__divider {
  width: 2px;
  background: #c29182;
  min-height: 118px;
  align-self: stretch;
}

.examples__col {
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: center;
}

.examples__badge--ours {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 34px;
  padding: 0 18px;
  border-radius: 9px;
  background: #ba8c7d;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}

.examples__badge--trad {
  display: inline-block;
  background: transparent;
  color: #c29182;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2px;
}

.examples__line {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.18;
  color: #3A4C63;
}

.examples__key {
  font-size: 1rem;
  font-weight: 800;
  color: #3A4C63;
}

.examples__val {
  font-size: 1rem;
  font-weight: 500;
  color: #3A4C63;
}

.examples__line--highlight,
.examples__line--highlight .examples__key,
.examples__line--highlight .examples__val,
.examples__line--muted,
.examples__line--muted .examples__key,
.examples__line--muted .examples__val {
  color: #3A4C63;
}

/* =============================================
   RECOVERY
   ============================================= */
.recovery { background: #FAFAFA; }
.recovery__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.recovery__image { border-radius: 20px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,0.12); }
.recovery__image img { width: 100%; height: 420px; object-fit: cover; object-position: center; }
.recovery__title {
  font-size: clamp(1.20rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #3A4C63;
  margin-bottom: 20px;
  line-height: 1.3;
}
.recovery__text {
  font-size: 1.15rem;
  color: #3A4C63;
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: justify;
}
.recovery__btn {
  margin-top: 12px;
  background: #B18376;
  color: #FAFAFA;
  border: 2px solid #B18376;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s ease;
  cursor: pointer;
}
.recovery__btn:hover {
  background: #B18376;
  color: #fff;
  transform: translateY(-1px);
}

/* =============================================
   CRITICAL
   ============================================= */
.critical { background: #3A4C63; padding: 40px 0; }
.critical__inner { text-align: center; max-width: 700px; margin: 0 auto; }
.critical__title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 20px; }
.critical__text { font-size: 1.05rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 36px; }
.critical__btn {
  font-size: 1rem; padding: 16px 36px;
  background: #B18376; color: #fff; border-color: #B18376;
}
.critical__btn:hover {
  background: #9a6e63; border-color: #9a6e63;
  box-shadow: 0 4px 20px rgba(177,131,118,0.4); transform: translateY(-1px);
}

.critical__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.critical__left { flex: 1; max-width: 600px; }
.critical__title { text-align: left; margin-bottom: 16px; }
.critical__text { margin-bottom: 0; text-align: left; }
.critical__btn { flex-shrink: 0; }

/* =============================================
   OUR FOCUS
   ============================================= */
.focus { background: #fff; }
.focus__main-title { text-align: center; margin-bottom: 12px; color: #3A4C63; font-size: 3rem; }
.focus__main-subtitle { text-align: center; margin-bottom: 56px; color: #3A4C63; font-size: 1.15rem; }
.focus__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.focus__card {
  background: #FAFAFA;
  border-radius: 16px;
  padding: 36px 28px;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.focus__card:hover { transform: translateY(-4px); box-shadow: 0 8px 36px rgba(177,131,118,0.12); border-color: #e8cfc9; }
.focus__card-icon { width: 52px; height: 52px; margin-bottom: 20px; }
.focus__card-icon img { width: 100%; height: 100%; object-fit: contain; }
.focus__card-title { font-size: 1.80rem; font-weight: 700; color: #3A4C63; margin-bottom: 12px; font-family: 'Playfair Display', Georgia, serif; }
.focus__card-text { font-size: 1.15rem; color: #3A4C63; line-height: 1.65; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #3A4C63; padding: 24px 0 32px; }

.footer-disclaimer {
  background: #f5ede9;
  padding: 40px 0;
  width: 100%;
}
.footer-disclaimer__text {
  font-size: 0.82rem;
  color: #3A4C63;
  line-height: 1.75;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-disclaimer__text p + p { margin-top: 4px; }

.footer { background: #3A4C63; padding: 20px 0; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer__links { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; }
.footer__link { font-size: 0.88rem; color: rgba(255,255,255,0.75); font-weight: 500; padding: 2px 4px; transition: color 0.2s; }
.footer__link:hover { color: #fff; }
.footer__copy { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
/* =============================================
   INNER PAGES — SHARED
   ============================================= */
.page-main { padding-top: 72px; }

.page-hero {
  background: linear-gradient(135deg, #3A4C63 0%, #3A4C63 100%);
  padding: 72px 0 64px;
}
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #fff;
  line-height: 1.15; letter-spacing: -0.02em; text-align: center;
}

/* =============================================
   YOUR TEAM PAGE
   ============================================= */
.team { background: #FAFAFA; }
.team__grid { display: flex; justify-content: center; gap: 32px; }
.team__card {
  background: transparent; border-radius: 20px; overflow: hidden;
  box-shadow: none; border: none;
  transition: transform 0.25s ease;
  width: 300px;
}
.team__card:hover { transform: translateY(-5px); box-shadow: none; }
.team__card-img-wrap { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: #e5e7eb; border-radius: 16px; }
.team__card-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team__card-body { padding: 20px 0 0; display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; }
.team__card-name { font-size: 1.25rem; font-weight: 700; color: #3A4C63; }
.team__card-role { font-size: 0.95rem; color: #3A4C63; font-weight: 400; margin-bottom: 14px; }
.team__card-btn { align-self: center; padding: 10px 28px; font-size: 0.9rem; }

/* =============================================
   LOCATION PAGE
   ============================================= */
.location__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.location__map { background: transparent; border-radius: 0; overflow: visible; box-shadow: none; border: none; padding: 0; }
.location__map-img { width: 100%; height: auto; }
.location__state { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #3A4C63; margin-bottom: 28px; }
.location__address-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #e5e7eb; }
.location__address-block:last-of-type { border-bottom: none; margin-bottom: 0; }
.location__address-label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #B18376; margin-bottom: 10px; }
.location__address-name { font-size: 0.95rem; font-weight: 400; color: #3A4C63; margin-bottom: 4px; }
.location__address-line { font-size: 0.95rem; color: #3A4C63; line-height: 1.45; }
.location__btn { margin-top: 24px; padding: 14px 32px; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: flex-start; }
.contact-page__hero-phone { 
  font-size: 1.1rem; 
  color: #ffffff; 
  margin-top: 12px; 
  text-align: center; 
}
.contact-page__hero-phone a { color: #ffffff; font-weight: 600; }

.contact-card { background: transparent; border-radius: 0; padding: 0; border: none; }
.contact-card__title { font-size: 2.5rem; font-weight: 700; color: #3A4C63; margin-bottom: 8px; font-family: 'Playfair Display', Georgia, serif; }
.contact-card__subtitle { font-size: 1.15rem; color: #3A4C63; margin-bottom: 28px; line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 32px; }
.contact-form__group { display: flex; flex-direction: column; gap: 6px; }
.contact-form__label { font-size: 0.82rem; font-weight: 600; color: #3A4C63; text-transform: uppercase; letter-spacing: 0.05em; }

.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  width: 100%; padding: 10px 0;
  border: none; border-bottom: 1.5px solid #d1d5db;
  border-radius: 0; background: transparent;
  font-size: 0.95rem; font-family: inherit; color: #3A4C63;
  transition: border-color 0.2s; outline: none;
  -webkit-appearance: none; appearance: none;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder { color: #aab0b8; font-size: 1rem; }
.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus { border-bottom-color: #B18376; box-shadow: none; }
.contact-form__textarea { resize: vertical; min-height: 110px; }
.contact-form__select-wrap { position: relative; }
.contact-form__select { cursor: pointer; padding-right: 40px; }
.contact-form__select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: #888; pointer-events: none; }
.contact-form__submit { width: 100%; padding: 15px; font-size: 1rem; margin-top: 4px; border: none; }
.contact-form__success {
  display: none; align-items: center; gap: 10px;
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px;
  padding: 14px 18px; font-size: 0.95rem; font-weight: 500; color: #166534;
}
.contact-form__success.visible { display: flex; }
.contact-page__img-col { position: sticky; top: 92px; }
.contact-page__img { width: 100%; height: 600px; object-fit: cover; object-position: center top; border-radius: 20px; box-shadow: 0 12px 48px rgba(0,0,0,0.12); }

/* =============================================
   PROFILE PAGE
   ============================================= */
.profile__inner { display: grid; grid-template-columns: 480px 1fr; gap: 80px; align-items: flex-start; }
.profile__photo-col { position: sticky; top: 92px; }
.profile__photo-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.12); }
.profile__photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top center; }
.profile__badge { display: none; }
.profile__bio-col { padding-top: 8px; }
.profile__bio-text { font-size: 1rem; color: #3A4C63; line-height: 1.55; margin-bottom: 14px; text-align: justify; }
.profile__cta { margin-top: 16px; padding: 15px 36px; font-size: 1rem; }

/* =============================================
   LEGAL PAGES — Disclaimer, Privacy, Terms
   ============================================= */

.legal { background: #FAFAFA; }

.legal__content {
  max-width: 800px;
  margin: 0 auto;
}

.legal__intro {
  font-size: 1.05rem;
  color: #3A4C63;
  line-height: 1.75;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e7eb;
}

.legal__block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}

.legal__block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #3A4C63;
  margin-bottom: 16px;
}

.legal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal__list li {
  font-size: 0.97rem;
  color: #3A4C63;
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
}

.legal__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #B18376;
  font-size: 1.4rem;
  line-height: 1.3;
}

.legal__link {
  color: #B18376;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}

.legal__link:hover {
  color: #9a6e63;
}