/* ============================================================
   JOBY BEAUTY — jobybeauty.com
   Mobile-first estrito: estilos base = mobile.
   Progressão APENAS via @media (min-width: …).
   Convenção: .bloco_pai > .in__elemento (escopo direto).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --bg: #FAF9F7;
  --bg-elev: #FFFFFF;
  --bg-soft: #F2EFEA;
  --ink: #0C0A09;
  --ink-2: #44403C;
  --ink-3: #6E675F;
  --line: #E7E2DA;

  --gold: #A0772C;
  --gold-soft: #C79A44;
  --rose: #B76E79;

  --cta-grad: linear-gradient(120deg, #EED29A 0%, #E2B08E 55%, #DBA3AB 100%);
  --cta-ink: #2A1512;
  --cta-line: rgba(160, 119, 44, 0.35);

  --shadow-card: 0 1px 2px rgba(12, 10, 9, 0.04), 0 8px 24px -12px rgba(12, 10, 9, 0.10);
  --shadow-card-hover: 0 2px 4px rgba(12, 10, 9, 0.05), 0 24px 48px -20px rgba(12, 10, 9, 0.20);
  --shadow-cta: 0 10px 28px -10px rgba(183, 110, 121, 0.5);

  --radius: 1.4rem;
  --header-h: 3.75rem;
}

:root[data-theme="dark"] {
  --bg: #0C0A09;
  --bg-elev: #161311;
  --bg-soft: #1A1613;
  --ink: #F5F2EE;
  --ink-2: #C9C2BA;
  --ink-3: #97908A;
  --line: #2B2620;

  --gold: #E3B341;
  --gold-soft: #C79A44;
  --rose: #D9949E;

  --cta-line: rgba(234, 203, 127, 0.35);
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 24px -12px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 2px 4px rgba(0, 0, 0, 0.5), 0 24px 48px -18px rgba(0, 0, 0, 0.65);
  --shadow-cta: 0 10px 28px -10px rgba(183, 110, 121, 0.35);
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 0.35rem;
}

::selection { background: rgba(183, 110, 121, 0.25); }

/* ---------- Utilitários ---------- */
.wrap {
  width: min(100% - 2.5rem, 74rem);
  margin-inline: auto;
}

.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip_link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 0 0 0.75rem 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 200ms ease;

  &:focus-visible { top: 0; }
}

.section_title {
  font-size: clamp(1.65rem, 5.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.section_lead {
  color: var(--ink-2);
  font-size: 1rem;
  max-width: 42rem;

  @media (min-width: 768px) { font-size: 1.1rem; }
}

/* ---------- Botões ---------- */
.btn_primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: var(--cta-grad);
  color: var(--cta-ink);
  border: 1px solid var(--cta-line);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  transition: transform 200ms ease, filter 200ms ease, box-shadow 200ms ease;

  > .in__icon { width: 1rem; height: 1rem; }

  &:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 14px 32px -10px rgba(183, 110, 121, 0.55);
  }

  &:active { transform: translateY(0); }
}

.btn_ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 200ms ease, border-color 200ms ease;

  &:hover {
    background: var(--bg-soft);
    border-color: var(--ink-3);
  }
}

/* ---------- Header ---------- */
@media (min-width: 768px) {
  :root { --header-h: 4.25rem; }
}

.site_header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid var(--line);
}

/* Barra interna: logo + ações + painel (nav/busca) */
.header_bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);

  > .in__actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  /* Painel mobile (nav + busca) */
  > .in__panel {
    display: none;
    flex-basis: 100%;
    padding-block: 0.75rem 1.25rem;
    border-top: 1px solid var(--line);
  }

  &.is-open > .in__panel { display: block; }

  @media (min-width: 768px) {
    flex-wrap: nowrap;
    gap: 1.25rem;

    > .in__panel {
      display: flex;
      flex: 1;
      flex-basis: auto;
      min-width: 0;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding-block: 0;
      border-top: 0;
    }
  }

  @media (min-width: 1024px) {
    gap: 2rem;

    > .in__panel { gap: 1.5rem; }
  }
}

/* ---------- Logo ---------- */
.brand_logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;

  > .in__logo_img {
    height: 1.8rem;
    width: auto;
    display: block;
  }

  @media (min-width: 1024px) {
    > .in__logo_img { height: 2.1rem; }
  }
}

:root[data-theme="dark"] .brand_logo .in__logo_img--light {
  display: none !important;
}
:root:not([data-theme="dark"]) .brand_logo .in__logo_img--dark {
  display: none !important;
}

/* ---------- Navegação ---------- */
.main_nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  list-style: none;
  padding: 0;
  margin-block: 0.5rem 0.85rem;

  > li { display: contents; }

  @media (min-width: 768px) {
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    margin-block: 0;
  }

  @media (min-width: 1024px) { gap: 1.6rem; }
}

.nav_item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--ink-2);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 200ms ease;

  &::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.35rem;
    width: 100%;
    height: 1.5px;
    background: var(--gold-soft);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
  }

  &:hover { color: var(--ink); }
  &:hover::after { transform: scaleX(1); }

  @media (min-width: 768px) {
    min-height: 2.25rem;
    font-size: 0.92rem;
  }
}

/* ---------- Busca ---------- */
.site_search {
  position: relative;

  > .in__icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    translate: 0 -50%;
    width: 1rem;
    height: 1rem;
    color: var(--ink-3);
    pointer-events: none;
  }

  > .in__input {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.55rem 1rem 0.55rem 2.5rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--ink);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 200ms ease, background-color 200ms ease, width 250ms ease;

    &::placeholder { color: var(--ink-3); }

    &:focus {
      outline: none;
      border-color: var(--rose);
      background: var(--bg-elev);
    }
  }

  @media (min-width: 768px) {
    > .in__input {
      width: 9.5rem;
      min-height: 2.5rem;
      font-size: 0.9rem;

      &:focus { width: 12rem; }
    }
  }

  @media (min-width: 1024px) {
    > .in__input {
      width: 13rem;

      &:focus { width: 16rem; }
    }
  }
}

/* ---------- Botões de ícone (tema / menu) ---------- */
.icon_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  color: var(--ink-2);
  transition: background-color 200ms ease, color 200ms ease;

  > .in__icon { width: 1.25rem; height: 1.25rem; }

  &:hover {
    background: var(--bg-soft);
    color: var(--ink);
  }
}

/* Alternância de ícones controlada por estado global/parent */
.theme_toggle > .in__icon_moon { display: none; }
:root[data-theme="dark"] .theme_toggle > .in__icon_sun { display: none; }
:root[data-theme="dark"] .theme_toggle > .in__icon_moon { display: block; }

.nav_burger > .in__icon_close { display: none; }
.nav_burger[aria-expanded="true"] > .in__icon_menu { display: none; }
.nav_burger[aria-expanded="true"] > .in__icon_close { display: block; }

.nav_burger {
  @media (min-width: 768px) { display: none; }
}

/* ---------- Hero ---------- */
.hero_intro {
  position: relative;
  overflow: hidden;
  padding-block: 3.5rem 3rem;
  text-align: center;
  background:
    radial-gradient(58rem 30rem at 88% -12%, rgba(183, 110, 121, 0.13), transparent 62%),
    radial-gradient(48rem 26rem at 8% 112%, rgba(199, 154, 68, 0.12), transparent 62%);

  @media (min-width: 768px) { padding-block: 5.5rem 4.5rem; }

  @media (min-width: 1024px) { padding-block: 7.5rem 6rem; }
}

.hero_body {
  > .in__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
  }

  > .in__title {
    font-size: clamp(2.35rem, 9vw, 4.6rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.04;
    text-wrap: balance;
    max-width: 21ch;
    margin-inline: auto;
  }

  > .in__lead {
    margin-top: 1.15rem;
    margin-inline: auto;
    max-width: 33rem;
    color: var(--ink-2);
    font-size: 1.02rem;
    text-wrap: pretty;
  }

  > .in__cta_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.9rem;
  }

  > .in__meta {
    margin-top: 1.75rem;
    font-size: 0.78rem;
    color: var(--ink-3);
    letter-spacing: 0.04em;
  }

  @media (min-width: 640px) {
    > .in__cta_row { flex-direction: row; justify-content: center; }
  }

  @media (min-width: 768px) {
    > .in__lead { font-size: 1.15rem; }
  }
}

/* ---------- Catálogo ---------- */
.catalog_area {
  padding-block: 3rem 3.5rem;

  @media (min-width: 1024px) {
    padding-block: 4.5rem 5.5rem;
  }
}

.catalog_body {
  > .in__head {
    margin-bottom: 0.6rem;
  }

  > .in__note {
    font-size: 0.8rem;
    color: var(--ink-3);
    max-width: 46rem;
    margin-bottom: 1.4rem;
  }
}

/* ---------- Filtros ---------- */
.filter_bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  padding-block: 0.25rem 1.5rem;
  -webkit-overflow-scrolling: touch;

  &::-webkit-scrollbar { display: none; }

  > .in__chip {
    flex: none;
    scroll-snap-align: start;
    min-height: 2.75rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--bg-elev);
    color: var(--ink-2);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;

    &:hover { border-color: var(--ink-3); color: var(--ink); }

    &.is-active {
      background: var(--ink);
      border-color: var(--ink);
      color: var(--bg);
    }
  }

  @media (min-width: 768px) {
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 1.75rem;
  }
}

/* ---------- Grid de produtos ---------- */
.product_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;

  @media (min-width: 640px) { grid-template-columns: repeat(2, 1fr); }

  @media (min-width: 1024px) {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  @media (min-width: 1280px) { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Card de produto ---------- */
.product_card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 250ms ease, box-shadow 250ms ease;

  &.is-hidden { display: none; }

  > .in__media {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #F0EDE7;

    > img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 400ms cubic-bezier(0.2, 0.6, 0.2, 1);
    }

    > .in__carousel_track {
      display: flex;
      width: 100%;
      height: 100%;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;

      &::-webkit-scrollbar {
        display: none;
      }

      > .in__slide {
        flex: none;
        width: 100%;
        height: 100%;
        scroll-snap-align: start;

        > img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 400ms cubic-bezier(0.2, 0.6, 0.2, 1);
        }
      }
    }

    > .in__carousel_dots {
      position: absolute;
      bottom: 0.75rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.4rem;
      z-index: 10;
      padding: 0.3rem 0.6rem;
      border-radius: 999px;
      background: rgba(12, 10, 9, 0.35);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      pointer-events: none;

      > .in__dot {
        width: 0.35rem;
        height: 0.35rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.5);
        transition: background-color 200ms ease, transform 200ms ease;

        &.is-active {
          background: #FFFFFF;
          transform: scale(1.2);
        }
      }
    }
  }

  > .in__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.55rem;
    padding: 1.1rem 1.15rem 1.25rem;
  }

  @media (hover: hover) {
    &:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card-hover);
    }

    &:hover > .in__media > img,
    &:hover > .in__media > .in__carousel_track > .in__slide > img {
      transform: scale(1.045);
    }
  }
}

/* Elementos internos do corpo do card */
.card_body {
  > .in__tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
  }

  > .in__name {
    font-size: 1.03rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;

    > a {
      text-decoration: none;
      transition: color 200ms ease;

      &:hover {
        color: var(--rose);
      }
    }
  }

  > .in__desc {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--ink-2);
  }

  > .in__specs {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.85rem;
    row-gap: 0.3rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;

    > dt { color: var(--ink-3); font-weight: 500; }
    > dd { color: var(--ink-2); margin: 0; }
  }

  > .in__why {
    font-size: 0.85rem;

    > summary {
      cursor: pointer;
      list-style: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      min-height: 2rem;
      font-weight: 600;
      color: var(--gold);
      transition: color 200ms ease;

      &::-webkit-details-marker { display: none; }
      &:hover { color: var(--rose); }

      > .in__icon { width: 0.85rem; height: 0.85rem; transition: transform 250ms ease; }
    }

    > p {
      padding-top: 0.4rem;
      line-height: 1.6;
      color: var(--ink-2);
    }

    &[open] > summary > .in__icon { transform: rotate(45deg); }
  }

  > .in__foot {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 0.9rem;
  }
}

.btn_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  background: var(--cta-grad);
  color: var(--cta-ink);
  border: 1px solid var(--cta-line);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 200ms ease, filter 200ms ease, box-shadow 200ms ease;

  > .in__icon { width: 0.9rem; height: 0.9rem; }

  &:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: var(--shadow-cta);
  }
}

/* Avaliação */
.rating_stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;

  > .in__stars {
    display: inline-flex;
    gap: 0.1rem;
    color: var(--gold-soft);
  }

  > .in__score {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-2);
  }
}
.rating_stars > .in__stars > svg { width: 0.85rem; height: 0.85rem; }
.rating_stars > .in__stars > .is-empty { opacity: 0.28; }

/* Estado vazio da busca/filtro */
.empty_state {
  display: none;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--ink-3);
  font-size: 0.95rem;

  &.is-visible { display: block; }
}

/* ---------- Curadoria (Autoridade / GEO) ---------- */
.curation_block {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
  padding-block: 3.5rem;

  @media (min-width: 1024px) {
    padding-block: 5rem;
  }
}

.curation_body {
  > .in__lead {
    margin-top: 0.9rem;
  }

  > .in__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-top: 2.25rem;
  }

  > .in__pledge {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    font-size: 0.88rem;
    color: var(--ink-3);
    max-width: 52rem;
  }

  @media (min-width: 768px) {
    > .in__steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  }
}

.curation_step {
  > .in__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid var(--cta-line);
    background: var(--cta-grad);
    color: var(--cta-ink);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
  }

  > .in__title {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.45rem;
  }

  > .in__text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--ink-2);
  }
}

/* ---------- FAQ ---------- */
.faq_block {
  padding-block: 3.5rem;

  @media (min-width: 1024px) {
    padding-block: 5rem;
  }
}

.faq_body {
  > .in__list {
    max-width: 46rem;
    margin-top: 1.75rem;
  }
}

.faq_item {
  border-bottom: 1px solid var(--line);

  > summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.5rem;
    padding-block: 0.9rem;
    font-weight: 600;
    font-size: 0.98rem;
    transition: color 200ms ease;

    &::-webkit-details-marker { display: none; }
    &:hover { color: var(--gold); }

    > .in__icon {
      flex: none;
      width: 1rem;
      height: 1rem;
      color: var(--ink-3);
      transition: transform 250ms ease;
    }
  }

  > .in__answer {
    padding-bottom: 1.15rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--ink-2);
    max-width: 42rem;
  }

  &[open] > summary > .in__icon { transform: rotate(45deg); }
}

/* ---------- Footer ---------- */
.site_footer {
  background: #100E0C;
  color: #C4BCB2;
  padding-block: 3.25rem 2rem;
  font-size: 0.9rem;
}

.footer_body {
  > .in__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  > .in__disclosure {
    margin-top: 2.5rem;
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    font-size: 0.84rem;
    line-height: 1.65;
    color: #A69E94;

    > strong { color: #D9D2C8; font-weight: 600; }
  }

  > .in__legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.8rem;
    color: #8A837B;
  }

  @media (min-width: 768px) {
    > .in__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }

    > .in__legal {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  }
}

.footer_brand {
  > .in__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;

    > .in__logo_img {
      height: 1.8rem;
      width: auto;
      display: block;
    }
  }

  > .in__tagline {
    margin-top: 0.9rem;
    max-width: 20rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #A69E94;
  }
}

.footer_col {
  > .in__title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8A837B;
    margin-bottom: 0.85rem;
  }

  > .in__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
}

.footer_link {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  color: #C4BCB2;
  text-decoration: none;
  transition: color 200ms ease;

  &:hover { color: #FFFFFF; }
}

.social_links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.4rem;

  > .in__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #C4BCB2;
    transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;

    > svg { width: 1.05rem; height: 1.05rem; fill: currentColor; }

    &:hover {
      color: #FFFFFF;
      border-color: rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.06);
    }
  }
}

/* ---------- Revelação suave (Antigravity feel) ---------- */
.reveal_up {
  opacity: 0;
  translate: 0 1.1rem;
  transition: opacity 600ms ease, translate 600ms cubic-bezier(0.2, 0.6, 0.2, 1);

  &.is-visible {
    opacity: 1;
    translate: 0 0;
  }
}

/* ---------- Acessibilidade: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal_up {
    opacity: 1;
    translate: 0 0;
  }
}
