/* =========================
   HEADER MOBILE
========================= */

:root {
  --header-height: 66px;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
}

.header__content {
  position: relative;
  z-index: 1003;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 0 3px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__image {
  display: block;
  width: 151px;
  height: 62px;
  object-fit: contain;
}

.menu-button {
  position: relative;
  z-index: 1004;
  display: flex;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1.2px solid rgba(244, 243, 237, 0.65);
  border-radius: 50%;
  background: #1d1d1d;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.menu-button:hover {
  border-color: #f4f3ed;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 4px;
  border-radius: 999px;
  background: #f4f3ed;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-button.active {
  gap: 0;
}

.menu-button.active span:nth-child(1) {
  position: absolute;
  transform: rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:nth-child(3) {
  position: absolute;
  transform: rotate(-45deg);
}

/* =========================
   MENU ABERTO MOBILE
========================= */

.mobile-menu {
  position: fixed;
  z-index: 1002;
  top: 0;
  right: 0;
  display: flex;
  width: min(60vw, 237px);
  height: 100dvh;
  flex-direction: column;
  align-items: flex-start;
  padding: 204px 28px 82px;
  background: linear-gradient(112deg, rgba(29, 29, 29, 0.98), rgba(20, 20, 20, 1));
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.32s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu__link {
  display: block;
  width: 100%;
  padding: 0;
  color: #f4f3ed;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
}

.mobile-menu__link + .mobile-menu__link {
  margin-top: 36px;
}

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible {
  color: #b39f84;
}

.mobile-menu__button-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

.mobile-menu__button {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 8px 14px;
  border: 1.2px solid rgba(244, 243, 237, 0.82);
  border-radius: 999px;
  background: linear-gradient(90deg, #a89275, #b9a88e);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  position: fixed;
  z-index: 1001;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
  content: "";
}

main {
  padding-top: 0;
}

/* =========================
   HERO MOBILE — FIGMA 402 × 822
========================= */

.hero {
  position: relative;
  min-height: 822px;
  padding: 68px 30px 54px;
  overflow: hidden;
  background: linear-gradient(112deg, rgba(29, 29, 29, 0.98), rgba(24, 24, 24, 1));
  color: #fff;
}

.hero__content {
  display: flex;
  width: 100%;
  max-width: 342px;
  min-height: 700px;
  flex-direction: column;
  margin: 0 auto;
}

.hero__photo-wrapper {
  width: 267px;
  height: 352px;
  margin: 0 auto 17px;
  overflow: hidden;
  border-radius: 50% / 47%;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__text {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.hero__logo {
  width: 261px;
  height: 119px;
  margin: 0 0 10px 29px;
}

.hero__logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.hero__profession {
  margin: 0 0 1px 29px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.14;
}

.hero__attendance {
  margin: 0 0 22px 30px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.18;
}

.hero__attendance strong {
  font-weight: 700;
}

.hero__description {
  width: 271px;
  margin: 0 0 30px 30px;
  color: #f4f3ed;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.15;
}

.hero__button {
  display: flex;
  width: 342px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 20px;
  border: 1.8px solid #f4f3ed;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 65%, #b39f84 0%, #b7a68d 48%, #aa967b 100%);
  color: #1d1d1d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.hero__button:hover,
.hero__button:focus-visible {
  filter: brightness(1.06);
}

.hero__button-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

@media (max-width: 380px) {
  .hero {
    min-height: 780px;
    padding-inline: 20px;
  }

  .hero__content {
    max-width: 100%;
    min-height: 660px;
  }

  .hero__photo-wrapper {
    width: 235px;
    height: 310px;
  }

  .hero__logo {
    width: 232px;
    height: auto;
    margin-left: 18px;
  }

  .hero__profession,
  .hero__attendance,
  .hero__description {
    margin-left: 18px;
  }

  .hero__profession {
    font-size: 25px;
  }

  .hero__attendance {
    font-size: 16px;
  }

  .hero__button {
    width: 100%;
  }
}

/* =========================
   PARA QUEM É
========================= */

.audience {
  width: 100%;
  overflow: hidden;
  background-color: #f4f3ed;
}

.audience__content {
  position: relative;

  width: 100%;
  max-width: 402px;
  height: 726px;

  margin: 0 auto;

  color: #000000;
  font-family: Helvetica, Arial, sans-serif;
}

/* TÍTULO */

.audience__title {
  position: absolute;
  top: 17px;
  left: 59px;

  margin: 0;

  color: #b39f84;

  font-family: Helvetica, Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 0.83;
  white-space: nowrap;
}

.audience__subtitle {
  position: absolute;
  top: 66px;
  left: 61px;

  margin: 0;

  color: #000000;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.2;
}

/* ITENS */

.audience__item {
  position: absolute;

  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin: 0;
}

.audience__item p {
  margin: 0;

  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.12;
}

.audience__item strong {
  font-weight: 700;
}

.audience__arrow {
  display: block;
  width: 19px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 2px;
  object-fit: contain;
}

/* POSIÇÃO DOS ITENS */

.audience__item--one {
  top: 124px;
  left: 32px;
}

.audience__item--two {
  top: 214px;
  left: 32px;
}

.audience__item--three {
  top: 322px;
  left: 32px;
}

.audience__item--four {
  top: 402px;
  left: 32px;
}

.audience__item--five {
  top: 492px;
  left: 169px;
}

.audience__item--six {
  top: 600px;
  left: 207px;
}

/* ILUSTRAÇÕES */

.audience__illustration {
  position: absolute;
  pointer-events: none;
}

.audience__illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.audience__illustration--top {
  top: 51px;
  right: -15px;

  width: 185px;
  height: 274px;
}

.audience__illustration--bottom {
  bottom: 0;
  left: -42px;

  width: 259px;
  height: 261px;
}

/* =========================
   TELAS MENORES
========================= */

@media (max-width: 380px) {
  .audience__content {
    transform-origin: top left;
  }

  .audience__title {
    left: 32px;
    font-size: 44px;
  }

  .audience__subtitle {
    left: 34px;
  }

  .audience__item--one,
  .audience__item--two,
  .audience__item--three,
  .audience__item--four {
    left: 16px;
  }

  .audience__item p {
    font-size: 14px;
  }

  .audience__illustration--top {
    right: -34px;
    width: 165px;
  }

  .audience__item--five {
    left: 150px;
  }

  .audience__item--six {
    left: 185px;
  }
}

/* =========================
   COMO É MEU TRABALHO
========================= */

.work {
  width: 100%;
  overflow: hidden;
  padding: 28px 0 44px;
  background:
    linear-gradient(115deg,
      rgba(29, 29, 29, 1) 18%,
      rgba(29, 29, 29, 0.86) 100%);
}

.work__content {
  width: min(100% - 62px, 402px);
  margin: 0 auto;
}

.work__heading {
  margin-bottom: 20px;
}

.work__title {
  margin: 0;

  color: #b39f84;

  font-family: Helvetica, Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 0.83;
}

.work__subtitle {
  margin: 7px 0 0;

  color: #f4f3ed;

  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.2;
}

.work__timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work-card {
  width: 278px;
  min-height: 238px;

  padding: 36px 28px;

  border: 1.5px solid #f4f3ed;
  border-radius: 30px;

  background-color: #f4f3ed;
  color: #1d1d1d;
}

.work-card__title {
  margin: 0 0 18px;

  color: #b39f84;

  font-family: Helvetica, Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 0.83;
}

.work-card__description {
  margin: 0;

  color: #1d1d1d;

  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.05;
}

.work-card__description strong {
  font-weight: 700;
}

.work__connector {
  position: relative;

  width: 12px;
  height: 81px;
}

.work__connector::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;

  border-left: 3px dashed rgba(244, 243, 237, 0.32);

  content: "";
  transform: translateX(-50%);
}

.work__connector::after {
  position: absolute;
  top: -4px;
  left: 50%;

  width: 8px;
  height: 8px;

  background-color: #575757;

  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.work__connector span {
  position: absolute;
  bottom: -4px;
  left: 50%;

  width: 8px;
  height: 8px;

  background-color: #575757;

  transform: translateX(-50%) rotate(45deg);
}

/* CELULARES MENORES */

@media (max-width: 360px) {
  .work__content {
    width: calc(100% - 32px);
  }

  .work__title {
    font-size: 44px;
  }

  .work-card {
    width: 270px;
    padding-inline: 26px;
  }

  .work-card__title {
    font-size: 35px;
  }

  .work-card__description {
    font-size: 15px;
  }
}

/* =========================
   ATENDIMENTO
========================= */

.attendance {
  width: 100%;
  padding: 14px 0 0;
  background: #f4f3ed;
  color: #1d1d1d;
  overflow: hidden;
}

.attendance__content {
  width: 100%;
  max-width: 402px;
  margin: 0 auto;
  padding: 0 0 0;
}

.attendance__title {
  margin: 0 0 28px;
  color: #b39f84;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 0.83;
  text-align: center;
}

.attendance__information {
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding: 0 52px;
}

.attendance__row {
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.attendance__icon,
.attendance__type-icon {
  display: block;
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  object-fit: contain;
}

.attendance__row-text strong {
  display: block;
  color: #1d1d1d;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.attendance__row-text p {
  margin: 2px 0 0;
  color: #1d1d1d;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
}

.attendance__divider {
  width: 187px;
  height: 1.2px;
  margin: 31px auto 28px;
  background: #b39f84;
  opacity: 0.72;
}

.attendance__types {
  padding: 0 52px;
}

.attendance__type {
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.attendance__type strong {
  color: #1d1d1d;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.attendance__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 23px 0 0 7px;
  padding: 0;
}

.attendance__list li {
  display: flex;
  align-items: center;
  gap: 19px;
  color: #1d1d1d;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
}

.attendance__list-icon {
  display: block;
  width: 19px;
  height: 14px;
  flex-shrink: 0;
  object-fit: contain;
}

.attendance__button {
  display: flex;
  width: calc(100% - 67px);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 37px auto 0;
  padding: 10px 20px;
  border: 1.5px solid #b39f84;
  border-radius: 54px;
  background: #b39f84;
  color: #f4f3ed;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.attendance__button:hover,
.attendance__button:focus-visible {
  filter: brightness(1.05);
}

.attendance__button-icon {
  display: block;
  width: 25px;
  height: 26px;
  flex-shrink: 0;
  object-fit: contain;
}

.attendance__social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 24px 24px 24px 24px;
  padding: 6px 6px 6px 6px;
  color: #1d1d1d;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
}

.attendance__social-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.attendance__social-item strong {
  font-weight: 700;
}

.attendance__social-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

.attendance__social-icon--crp {
  width: 24px;
}

/* =========================
   FOOTER
========================= */

.footer {
  min-height: 72px;
  padding: 16px 11px;
  background: #1d1d1d;
  color: #f4f3ed;
}

.footer__content {
  display: flex;
  width: 100%;
  max-width: 402px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer__logo {
  display: block;
  width: 82px;
  height: auto;
  object-fit: contain;
}

.footer__copyright {
  width: 155px;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 8px;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
}

@media (max-width: 380px) {
  .attendance__information,
  .attendance__types {
    padding-inline: 36px;
  }

  .attendance__title {
    font-size: 45px;
  }

  .attendance__row-text strong,
  .attendance__row-text p,
  .attendance__type strong,
  .attendance__list li {
    font-size: 14px;
  }

  .attendance__button {
    width: calc(100% - 36px);
    font-size: 20px;
  }

  .attendance__social {
    gap: 6px;
    font-size: 10px;
  }
}

/* =========================
   ROLAGEM E NAVEGAÇÃO
========================= */

html {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  pointer-events: none;
}

section {
  scroll-margin-top: 100px;
}


@media (max-width: 767px) {
  :root {
    --section-scroll-offset: calc(var(--header-height) + 18px);
  }
}