@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  background: #020202;
  color: #f2f2f0;
  line-height: 1.55;
}

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, 1216px);
  margin-inline: auto;
}

@media (max-width: 820px) {
  .container {
    width: min(95vw, 1216px);
  }
}

.hero__top {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 2.4rem;
  padding-top: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(158px, 11.4vw, 176px);
}

.brand img {
  width: 100%;
  height: auto;
}

.hero__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  align-self: center;
}

.hero__nav a {
  color: #f1f1ef;
  transition: color 220ms ease;
}

.hero__nav a:hover {
  color: #d9ae29;
}

.hero__menu-toggle {
  display: none;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  place-self: center end;
  width: 239px;
  min-height: 46px;
  padding: 0 16px;
  margin-top: 10px;
  border-radius: 20px;
  background: #e6b626;
  border: 1px solid transparent;
  color: #000;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(230, 182, 38, 0.18);
  transition: transform 220ms ease, filter 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #f0c847;
  border-color: rgba(255, 255, 255, 0.28);
  filter: brightness(1.02);
  box-shadow: 0 14px 32px rgba(230, 182, 38, 0.28);
}

.btn-whatsapp:focus-visible {
  outline: none;
  transform: translateY(-2px);
  background: #f0c847;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 4px rgba(230, 182, 38, 0.2);
}

@media (max-width: 1100px) {
  .hero__top {
    grid-template-columns: auto 1fr auto;
    column-gap: 1.2rem;
  }
  .hero__nav {
    justify-content: center;
    gap: 1.1rem;
    font-size: 15px;
  }
  .btn-whatsapp {
    width: 210px;
    min-height: 42px;
    font-size: 15px;
  }
}
@media (max-width: 820px) {
  .hero__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.1rem;
  }
  .brand {
    width: clamp(104px, 28vw, 136px);
  }
  .hero__menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.72);
    cursor: pointer;
    z-index: 6;
  }
  .hero__menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #f1f1ef;
    transition: transform 180ms ease, opacity 180ms ease;
  }
  .hero__nav {
    position: fixed;
    top: 5.4rem;
    left: 2.5vw;
    right: 2.5vw;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
    z-index: 1000;
  }
  .hero__top.menu-open .hero__nav {
    display: flex;
  }
  .hero__top.menu-open .hero__menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hero__top.menu-open .hero__menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .hero__top.menu-open .hero__menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .btn-whatsapp {
    grid-column: auto;
    place-self: center end;
    width: clamp(112px, 34vw, 148px);
    min-width: 0;
    min-height: 38px;
    padding: 0 0.72rem;
    margin-top: 0;
    border-radius: 16px;
    font-size: clamp(0.68rem, 2.55vw, 0.84rem);
    white-space: nowrap;
  }
}

body.menu-open .hero__top {
  z-index: 1001;
}
.hero {
  position: relative;
  height: 935px;
  min-height: 935px;
  overflow: hidden;
  background: #020202;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center -28px;
  transform-origin: center center;
  will-change: transform;
  animation: heroBgZoom 45s ease-in-out infinite alternate !important;
}

@keyframes heroBgZoom {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-2%, -1%, 0) scale(1.2);
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(92deg, rgba(0, 0, 0, 0.9) 4%, rgba(0, 0, 0, 0.74) 35%, rgba(0, 0, 0, 0.3) 63%, rgba(0, 0, 0, 0.56) 100%);
}

.hero__content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(320px, 56%) minmax(180px, 44%);
  align-items: start;
  gap: 1.2rem;
  margin-top: clamp(3.3rem, 7.2vh, 4.8rem);
  padding-bottom: 6rem;
}

.hero__left {
  max-width: 760px;
}

.hero__left h1 {
  width: 521px;
  max-width: 100%;
  margin-bottom: 2rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: 0;
}

.hero__left h1 strong {
  font-weight: 700;
}

.hero__left p {
  width: 489px;
  max-width: 100%;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  color: #fff;
}

.hero__left p strong {
  color: #fff;
  font-weight: 700;
}

.btn-whatsapp--inline {
  margin-top: 2.15rem;
  margin-bottom: 2.35rem;
}

.hero__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1rem 2.3rem;
  margin-top: 4.8rem;
  max-width: 47rem;
}

.hero__notes p {
  color: #e8e4db;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  line-height: 1.42;
}

.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: #e6b626;
  color: transparent;
  font-size: 0;
  transform: translateY(-1px);
  vertical-align: middle;
}

.hero__right {
  position: relative;
  min-height: 630px;
}

.hero__traits {
  position: absolute;
  right: clamp(0.1rem, 1vw, 0.6rem);
  z-index: 4;
  color: #ada89d;
  letter-spacing: 0.16em;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(0.82rem, 0.9vw, 1.02rem);
  line-height: 1.95;
}

.hero__traits--top {
  top: 3.6rem;
}

.hero__traits--mid {
  top: 16rem;
}

.hero__bottom-bar {
  display: none;
}

@media (max-width: 1280px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 2rem;
  }
  .hero__left {
    max-width: 900px;
  }
  .hero__right {
    min-height: 340px;
  }
  .hero__traits {
    right: 0.4rem;
  }
  .hero__traits--top {
    top: 1.1rem;
  }
  .hero__traits--mid {
    top: 10.8rem;
  }
}
@media (max-width: 820px) {
  .hero {
    height: auto;
    min-height: auto;
  }
  .hero__bg-img {
    object-position: 62% top;
  }
  .hero__content {
    margin-top: 1.7rem;
    padding-bottom: 5rem;
  }
  .hero__left {
    width: 100%;
    max-width: 95vw;
  }
  .hero__left h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.2rem, 8.2vw, 3.25rem);
    line-height: 1.05;
  }
  .hero__left p {
    width: 100%;
    max-width: 100%;
    line-height: 1.8;
  }
  .hero__notes {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .btn-whatsapp {
    width: 100%;
    min-height: 3rem;
    font-size: 1.06rem;
  }
  .hero__right {
    min-height: 0;
  }
  .hero__traits {
    display: none;
  }
}
.section-kicker {
  margin-bottom: 0.8rem;
  color: #d9ae29;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker--dark {
  color: #0f0f0f;
}

.section-kicker--center {
  text-align: center;
}

.section-title {
  max-width: 880px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 2.6vw, 2.75rem);
  line-height: 1.15;
}

.section-title--dark {
  color: #0f0f0f;
}

.section-subtitle {
  max-width: 770px;
  margin-top: 0.7rem;
  color: #d0d0cc;
}

.about-highlight {
  background: #d9ae29;
  color: #090909;
  padding: 4rem 0 3.5rem;
  margin-top: -1px;
}

.about-highlight__inner {
  text-align: center;
}

.about-highlight h2 {
  width: 1212px;
  max-width: 100%;
  margin: 0 auto;
  color: #000;
  text-align: center;
  font-family: "Amiri", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 42px;
}

.about-highlight h2 strong {
  font-weight: 700;
}

.about-highlight .section-kicker {
  width: 1212px;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 2.2rem;
  color: #000;
  text-align: left;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.about-highlight__points {
  margin-top: 2rem;
  display: grid;
  justify-content: center;
  gap: 1rem 90px;
  grid-template-columns: repeat(3, 209px);
}

.about-highlight__points p {
  width: 209px;
  flex-shrink: 0;
  color: #111111;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.about-highlight__points p strong {
  font-weight: 700;
}

.practice {
  padding: 4.8rem 0 5.8rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.96)), url("../assets/images/site/bg-efeito.png") center top/cover no-repeat;
}

.practice .section-title {
  width: 1010px;
  max-width: 100%;
  margin-inline: auto;
  color: #fff;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 40.199px;
  font-style: normal;
  font-weight: 400;
  line-height: 40.199px;
  letter-spacing: 0;
  margin-top: 2.35rem;
}

.practice .section-subtitle {
  width: 1010px;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 2.1rem;
  color: #fff;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
}

.practice__script {
  margin-bottom: 1.8rem;
  text-align: center;
}

.practice__script img {
  width: min(100%, 551px);
  margin-inline: auto;
}

.practice .section-kicker {
  margin-bottom: 1.9rem;
}

.practice__grid {
  margin-top: 2.2rem;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 598px);
  gap: 20px;
}

.practice-card {
  display: flex;
  width: 598px;
  height: 521.59px;
  padding: 1px 51px;
  flex-direction: row;
  justify-content: stretch;
  align-items: flex-start;
  border-radius: 42px;
  border: 1px solid #e6b626;
  background: rgba(0, 0, 0, 0.72);
}

.practice-card__body {
  width: 100%;
  height: 100%;
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.practice-card h3 {
  align-self: stretch;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 33.6px;
  margin: 0;
}

.practice-card__icon img {
  width: 70px;
  height: 70px;
}

.practice-card__tag {
  align-self: stretch;
  margin: 0;
  color: #e6b626;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.practice-card__desc {
  align-self: stretch;
  margin: 0;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.5px;
}

.practice-card a {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: #d9ae29;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
}

.practice-card a::before {
  content: "";
  margin-right: 10px;
  width: 13px;
  height: 13px;
  background: url("../assets/images/site/arrow-card.svg") center/contain no-repeat;
}

.planning {
  background: #efefef;
  padding: 4rem 0;
  color: #111;
  overflow: hidden;
}

.planning .section-kicker {
  margin: 0;
  color: #111;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: none;
}

.planning .section-title {
  width: 1110px;
  max-width: 100%;
  margin: 52px auto 0;
  color: #111;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
}

.planning .section-title strong {
  font-weight: 700;
}

.planning__mini-cards {
  margin-top: 56px;
  display: grid;
  justify-content: center;
  gap: 42px;
  grid-template-columns: repeat(3, 377px);
}

.mini-card {
  border-radius: 26px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mini-card__image {
  position: relative;
  height: 271px;
  background-color: #303030;
  background-size: cover;
  background-position: center;
}

.mini-card__image--1 {
  background-image: url("../assets/images/site/img-dedos.jpeg");
}

.mini-card__image--2 {
  background-image: url("../assets/images/site/rosas.jpeg");
}

.mini-card__image--3 {
  background-image: url("../assets/images/site/heranca.jpeg");
}

.mini-card__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.86) 76%, #000 100%);
}

.mini-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0 28px 22px;
}

.mini-card__eyebrow {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-card__footer {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  column-gap: 0.75rem;
}

.mini-card__label {
  min-width: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25;
  text-wrap: balance;
}

.mini-card__bullet {
  flex: 0 0 auto;
  color: #e6b626;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mini-card a {
  flex: 0 0 auto;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.mini-card:hover a,
.mini-card:focus-within a {
  color: #e6b626;
}

.mini-card:hover .mini-card__bullet,
.mini-card:focus-within .mini-card__bullet {
  transform: scale(1.06);
}

.planning__feature {
  margin-top: 14px;
  margin-bottom: -4rem;
  display: grid;
  gap: 3.6rem;
  grid-template-columns: minmax(560px, 1fr) minmax(420px, 520px);
  align-items: end;
}

.planning__portrait {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.planning__portrait::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 92px;
  z-index: 0;
  width: 508px;
  height: 508px;
  border-radius: 508px;
  opacity: 0.99;
  background: #9d532f;
  filter: blur(150px);
  pointer-events: none;
}

.planning__portrait-img {
  position: relative;
  top: 120px;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: contain;
  object-position: left bottom;
  transform: scale(1.14);
  transform-origin: left bottom;
}

.planning__portrait::after {
  content: "Se estiver procurando por um advogado\a de inventário, testamento, divórcio,\aunião estável e curatela em BH, fique\a bem. Nossa equipe de advogadas\a especialistas está pronta para oferecer a\a atenção devida à sua necessidade.";
  position: absolute;
  right: 14px;
  bottom: 78px;
  width: 420px;
  border-radius: 24px;
  background: #af8566;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  white-space: pre-line;
  padding: 16px 24px;
  z-index: 2;
}

.planning__content h3 {
  max-width: 489px;
  font-family: "Playfair Display", serif;
  color: #111;
  font-size: 62px;
  font-weight: 400;
  line-height: 1.08;
}

.planning__content h3 strong {
  font-weight: 700;
}

.planning__content p {
  margin-top: 34px;
  max-width: 489px;
  color: #212121;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
}

.planning__content p strong {
  font-weight: 700;
}

.planning__content .btn-whatsapp--inline {
  margin-top: 32px;
  margin-bottom: 32px;
}

.planning__content ul {
  margin-top: 0;
  display: grid;
  gap: 14px;
}

.planning__content li {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.45));
}

.planning__ebook-label {
  color: rgba(17, 17, 17, 0.62);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.planning__content li a {
  color: #3a2417;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.12;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.planning__content li a:hover {
  color: #7c5a00;
}

.planning__content::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 46px;
  background: rgba(17, 17, 17, 0.15);
}

.planning__content {
  margin-bottom: 24px;
}

.articles {
  background: #efefef;
  padding: 7rem 0 5.6rem;
  color: #111;
}

.section-kicker--blog {
  width: fit-content;
  margin: 0 auto 1.1rem;
  color: #1a1a1a;
  font-family: "Amiri", serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-kicker--blog::before,
.section-kicker--blog::after {
  content: "";
  width: 76px;
  height: 1px;
  background: #d0b070;
}

.articles__title {
  max-width: 920px;
  margin: 1.6rem auto 0;
  text-align: center;
  color: #181818;
  font-family: "Amiri", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.articles__title strong {
  font-weight: 700;
}

.articles__grid {
  margin-top: 3.3rem;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
}

.article-card {
  border: 1px solid #dedede;
  border-radius: 14px;
  background: #f5f5f5;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article-card__image {
  position: relative;
  aspect-ratio: 16/10;
  background-color: #bdbdbd;
  background-size: cover;
  background-position: center;
}

.article-card__image--1 {
  background-image: url("../assets/images/site/article-3.png");
}

.article-card__image--2 {
  background-image: url("../assets/images/site/article-4.png");
}

.article-card__image--3 {
  background-image: url("../assets/images/site/article-6.png");
}

.article-card__tag {
  position: absolute;
  top: 1.1rem;
  right: 1.15rem;
  padding: 0.36rem 0.9rem;
  border-radius: 999px;
  background: #cead72;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.article-card__body {
  min-height: 338px;
  padding: 1.55rem 1.7rem 1.4rem;
  display: flex;
  flex-direction: column;
}

.article-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
}

.article-card p {
  margin-top: 1.05rem;
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  color: #696969;
}

.article-card a {
  margin-top: 32px;
  display: inline-block;
  padding-top: 1.1rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #cead72;
}

.site-footer {
  background: #020202;
  color: #fff;
}

.site-footer__inner {
  padding: 6.1rem 0 6.3rem;
  display: grid;
  gap: 3.4rem;
  grid-template-columns: minmax(220px, 1.15fr) minmax(200px, 0.95fr) minmax(250px, 1fr) minmax(300px, 1.1fr);
}

.site-footer__brand img {
  width: 228px;
}

.site-footer__social {
  margin-top: 2rem;
  display: flex;
  gap: 0.9rem;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.site-footer__social img {
  width: 44px;
  height: 44px;
}

.site-footer h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.8rem;
}

.site-footer h3.site-footer__heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer h3.site-footer__heading--sora {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__quick-links {
  display: flex;
  flex-direction: column;
  gap: 9.5px;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #d9ae29;
}

.site-footer__subtitle {
  margin-top: 2.35rem;
}

.site-footer__list li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #e4e4e4;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.site-footer__list a {
  color: inherit;
  text-decoration: none;
}

.site-footer__col ul li {
  color: #e4e4e4;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.site-footer__list li + li {
  margin-top: 1.2rem;
}

.footer-icon-img {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}

.site-footer__cta {
  margin-top: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 220px;
  height: 42px;
  padding: 0 26px;
  border: 1px solid #fff;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-footer a.site-footer__cta {
  color: #fff;
}

.site-footer__cta:hover,
.site-footer__cta:focus-visible {
  border-color: #d9ae29;
  background: #d9ae29;
  color: #111;
  transform: translateY(-2px);
}

.site-footer a.site-footer__cta:hover,
.site-footer a.site-footer__cta:focus-visible,
.site-footer a.site-footer__cta:active {
  color: #111;
}

.site-footer__legal {
  background: #d9ae29;
}

.site-footer__legal-inner {
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-footer__legal p {
  color: #111;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.site-footer__dev {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #111;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  line-height: 1;
}

.site-footer__dev img {
  width: 18px;
  height: auto;
}

@media (max-width: 980px) {
  .about-highlight {
    padding: 3.2rem 0 3rem;
  }
  .about-highlight .section-kicker {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .about-highlight h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.18;
  }
  .practice__script {
    margin-bottom: 0.8rem;
  }
  .about-highlight__points,
  .practice__grid,
  .planning__mini-cards,
  .articles__grid {
    grid-template-columns: 1fr;
  }
  .articles {
    padding: 5rem 0 4.2rem;
  }
  .section-kicker--blog {
    font-size: 1.45rem;
  }
  .section-kicker--blog::before,
  .section-kicker--blog::after {
    width: 56px;
  }
  .articles__title {
    margin-top: 1.2rem;
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }
  .article-card__body {
    min-height: 0;
    padding: 1.3rem 1.2rem 1.2rem;
  }
  .article-card h3 {
    font-size: 18px;
  }
  .article-card p {
    margin-top: 0.8rem;
    font-size: 17px;
  }
  .article-card a {
    margin-top: 32px;
    font-size: 0.96rem;
  }
  .practice-card {
    width: 100%;
    height: auto;
    padding: 1.2rem 1.4rem;
    border-radius: 24px;
  }
  .about-highlight__points {
    justify-items: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
  }
  .about-highlight__points p {
    width: min(100%, 18rem);
    margin-inline: auto;
    text-align: center;
  }
  .practice-card__body {
    padding: 1rem 0;
    gap: 0.8rem;
  }
  .practice-card h3 {
    font-size: 2.1rem;
  }
  .practice-card a {
    font-size: 1.2rem;
  }
  .planning__feature {
    margin-bottom: 0;
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .mini-card__footer {
    grid-template-columns: 1fr;
    row-gap: 0.35rem;
  }
  .mini-card__bullet {
    display: none;
  }
  .mini-card a {
    white-space: normal;
  }
  .planning__portrait {
    min-height: 520px;
    justify-content: center;
  }
  .planning__portrait::before {
    left: 50%;
    bottom: 54px;
    width: 360px;
    height: 360px;
    border-radius: 360px;
    filter: blur(110px);
    transform: translateX(-50%);
  }
  .planning__portrait-img {
    top: 120px;
    max-height: 520px;
    object-position: center bottom;
    transform: scale(1.06);
    transform-origin: center bottom;
  }
  .planning__portrait::after {
    display: none;
  }
  .planning__content::before {
    margin-bottom: 1.4rem;
  }
  .planning__content h3 {
    max-width: 100%;
    font-size: 2.6rem;
    line-height: 1.08;
  }
  .planning__content p {
    max-width: 100%;
    line-height: 1.8;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding: 3rem 0;
  }
  .site-footer__brand img {
    width: 180px;
  }
  .site-footer h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .site-footer__subtitle {
    margin-top: 1.5rem;
  }
  .site-footer__list li {
    font-size: 16px;
    gap: 0.65rem;
  }
  .site-footer__list li + li {
    margin-top: 0.7rem;
  }
  .site-footer__social a {
    width: auto;
    height: auto;
  }
  .site-footer__social img {
    width: 32px;
    height: 32px;
  }
  .site-footer__cta {
    min-width: 220px;
    height: 42px;
    padding: 0 26px;
    font-size: 16px;
  }
  .site-footer__legal-inner {
    min-height: 0;
    padding: 0.8rem 0;
    flex-direction: column;
    gap: 0.45rem;
    justify-content: center;
    align-items: center;
  }
  .site-footer__legal p {
    font-size: 14px;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
  }
  .site-footer__dev {
    font-size: 14px;
  }
  .site-footer__dev img {
    width: 16px;
  }
}

/*# sourceMappingURL=main.css.map */
