/* ============================================================
   CAROL SOUZA — lifestyle • viagens • experiências
   Mobile first · sem dependências · hospedagem estática
   ============================================================ */

/* ---------- Fontes locais (sem dependência externa) ---------- */

@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/anton-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("fonts/caveat-latin.woff2") format("woff2");
}

:root {
  --paper: #faf7f2;
  --white: #ffffff;
  --ink: #14111a;
  --ink-soft: #423d4d;
  --muted: #67616f;
  --purple: #7c3aed;
  --purple-text: #6d28d9;
  --purple-deep: #5b21b6;
  --purple-dark: #43188f;
  --lilac: #f2ecff;
  --lilac-strong: #dcccff;
  --lilac-on-ink: #c4b5fd;
  --radius: 1.125rem;
  --radius-lg: 1.625rem;
  --shell: 72rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 4.5rem;
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-hand: "Caveat", "Segoe Script", cursive;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px; /* piso de viewport; em px de propósito para não crescer com a fonte */
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection {
  color: var(--white);
  background: var(--purple);
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

/* Sem "height: auto" os atributos width/height do HTML viram altura fixa
   e o aspect-ratio é ignorado — as imagens esticam verticalmente no mobile */
img {
  height: auto;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.section--ink :focus-visible,
.section--purple :focus-visible,
.footer :focus-visible {
  outline-color: var(--lilac-on-ink);
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  flex: none;
}

/* ---------- Acessibilidade ---------- */

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1.1rem;
  color: var(--white);
  background: var(--purple-deep);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 800;
  transform: translateY(-250%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ============================================================
   Cabeçalho
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(20, 17, 26, 0.08);
  transition: box-shadow 200ms ease;
}

/* Fundo translúcido em pseudo-elemento: um backdrop-filter no próprio
   header criaria um "containing block" e prenderia o menu fixed dentro dele */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
  box-shadow: 0 0.75rem 2rem rgba(20, 17, 26, 0.09);
}

.site-header__bar {
  position: relative;
  z-index: 95; /* acima do menu aberto (90): logo e botão X permanecem visíveis */
  display: flex;
  flex-wrap: wrap; /* com fontes muito ampliadas, o logo e as ações quebram linha */
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  min-height: var(--header-h);
  padding-block: 0.375rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
}

.brand span {
  color: var(--purple-text);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

/* ---------- Botões ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  max-width: 100%;
  padding: 0.8em 1.5em;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease,
    color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--chat {
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 0.9rem 1.8rem rgba(124, 58, 237, 0.32);
}

.button--chat:hover {
  background: var(--purple-deep);
}

.button--ghost {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button--ghost:hover {
  color: var(--paper);
  background: var(--ink);
}

.button--light {
  color: var(--purple-deep);
  background: var(--paper);
}

.button--light:hover {
  background: var(--white);
}

.button--pill {
  min-height: 2.75rem;
  padding: 0.55em 1.1em;
  box-shadow: none;
}

/* ---------- Botão do menu ---------- */

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 2.875rem;
  height: 2.875rem;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.125rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.36rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.36rem) rotate(-45deg);
}

/* ---------- Menu (tela cheia no mobile) ---------- */

.menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2.5rem;
  background: var(--paper);
  background-image: radial-gradient(
      circle at 85% 12%,
      rgba(124, 58, 237, 0.14),
      transparent 22rem
    ),
    radial-gradient(circle at 8% 90%, rgba(124, 58, 237, 0.1), transparent 18rem);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity 240ms ease, transform 240ms ease, visibility 0s 240ms;
  overflow-y: auto;
}

.menu.is-open {
  z-index: 90;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 240ms ease, transform 240ms ease;
}

body.menu-open {
  overflow: hidden;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8.5vw, 3.25rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color 160ms ease, transform 160ms ease;
}

.menu__link:hover {
  color: var(--purple-text);
  transform: translateX(0.4rem);
}

.menu__link--chat {
  color: var(--purple-text);
}

.menu__link--chat .icon {
  width: 0.8em;
  height: 0.8em;
}

.menu__hand {
  margin: 0;
}

/* ============================================================
   Tipografia de apoio
   ============================================================ */

.eyebrow {
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--purple-text);
}

.eyebrow span {
  color: var(--purple);
}

.section-label {
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--purple-text);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-wrap: balance;
  overflow-wrap: break-word;
  color: var(--ink);
}

.section-title--light {
  color: var(--paper);
}

.hand {
  font-family: var(--font-hand);
  font-size: clamp(1.625rem, 5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--purple-text);
  rotate: -2deg;
}

.hand--light {
  color: var(--lilac-on-ink);
}

.mark {
  color: var(--purple-deep);
  background-image: linear-gradient(
    transparent 58%,
    var(--lilac-strong) 58%
  );
  padding-inline: 0.08em;
}

/* ============================================================
   Seções e papel rasgado
   ============================================================ */

.section {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.section--lilac {
  background: var(--lilac);
}

.section--ink {
  background: var(--ink);
  color: #e9e5f2;
}

.section--purple {
  background: linear-gradient(165deg, var(--purple-dark) 0%, var(--purple-deep) 55%, var(--purple) 120%);
  color: var(--white);
}

.tear {
  line-height: 0;
}

.tear svg {
  display: block;
  width: 100%;
  height: clamp(1.75rem, 4.5vw, 3.5rem);
}

.tear--paper-on-lilac {
  background: var(--lilac);
}

.tear--paper-on-lilac svg {
  fill: var(--paper);
}

.tear--lilac-on-ink {
  background: var(--ink);
}

.tear--lilac-on-ink svg {
  fill: var(--lilac);
  transform: scaleX(-1);
}

.tear--ink-on-lilac {
  background: var(--lilac);
}

.tear--ink-on-lilac svg {
  fill: var(--ink);
}

.tear--lilac-on-purple {
  background: var(--purple-dark);
}

.tear--lilac-on-purple svg {
  fill: var(--lilac);
  transform: scaleX(-1);
}

/* ---------- Rabiscos e pinceladas ---------- */

.doodle {
  position: absolute;
  pointer-events: none;
  color: var(--purple);
}

.doodle--spark {
  top: -1.25rem;
  right: 6%;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1;
  rotate: 12deg;
}

.doodle--scribble {
  top: -1.75rem;
  left: -0.75rem;
  width: clamp(4rem, 12vw, 6rem);
  opacity: 0.85;
  rotate: -8deg;
}

.brush-word {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
  margin-top: 0.08em;
  padding: 0.05em 0.18em 0.12em;
  background: var(--purple);
  color: var(--paper);
  border-radius: 0.4em 0.18em 0.45em 0.2em / 0.55em 0.28em 0.5em 0.32em;
  rotate: -1.5deg;
}

/* ---------- Teto de altura das imagens ----------
   Impede que qualquer foto ocupe a tela inteira em telas curtas,
   deitadas ou com pouca altura útil. svh acompanha a barra do navegador
   no celular; o vh anterior serve de fallback em navegadores antigos. */

.hero__media img,
.about__media img {
  max-height: 62vh;
  max-height: min(62svh, 30rem);
}

.card__media img {
  max-height: 52vh;
  max-height: min(52svh, 26rem);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  background-image: radial-gradient(
      circle at 88% 8%,
      rgba(124, 58, 237, 0.12),
      transparent 20rem
    ),
    radial-gradient(circle at 4% 55%, rgba(124, 58, 237, 0.07), transparent 16rem);
}

.hero__grid {
  display: grid;
  gap: clamp(2.25rem, 6vw, 4rem);
}

/* Colunas fluidas: sem largura mínima intrínseca, para nunca estourar
   o container quando o usuário amplia as fontes */
.hero__grid > *,
.about__grid > *,
.footer__grid > * {
  min-width: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 12vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-wrap: balance;
  overflow-wrap: break-word;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero__text {
  max-width: 32rem;
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.hero__media {
  position: relative;
  max-width: 26rem;
  margin-inline: auto;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--radius-lg);
  box-shadow: 0 1.5rem 3rem rgba(20, 17, 26, 0.18);
}

.hero__sticker {
  position: absolute;
  right: 5%;
  bottom: -0.9rem;
  padding: 0.15rem 1rem 0.3rem;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 0.5rem 1.25rem rgba(20, 17, 26, 0.16);
  font-family: var(--font-hand);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--purple-text);
  rotate: -6deg;
}

/* ============================================================
   Quem sou
   ============================================================ */

.about__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.about__text {
  max-width: 34rem;
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
}

.about__media {
  position: relative;
  max-width: 24rem;
  margin-inline: auto;
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 60% 30%;
  border-radius: var(--radius-lg);
  box-shadow: 0.9rem 0.9rem 0 var(--lilac-strong);
}

/* ============================================================
   Carrosséis (Lifestyle e Viagens)
   ============================================================ */

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.25rem;
  margin-bottom: clamp(1.75rem, 5vw, 2.75rem);
}

.carousel__track {
  display: flex;
  gap: clamp(0.875rem, 2.5vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.375rem 0.25rem 1rem;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__item {
  flex: 0 0 min(72%, 19rem);
  min-width: 0;
  scroll-snap-align: start;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  border-radius: var(--radius);
}

.card__media {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(124, 58, 237, 0.12);
}

.card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 320ms ease;
}

.card:hover .card__media img,
.card:focus-visible .card__media img {
  transform: scale(1.045);
}

/* Bloco em vez de inline-flex: o nome quebra em duas linhas quando a fonte
   é ampliada, em vez de ser cortado na lateral do card */
.card__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: inherit;
  overflow-wrap: break-word;
}

.card__name::after {
  content: "→";
  display: inline-block;
  margin-left: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--purple);
  transition: transform 200ms ease;
}

.card:hover .card__name::after,
.card:focus-visible .card__name::after {
  transform: translateX(0.3rem);
}

.section--ink .card__name::after {
  color: var(--lilac-on-ink);
}

.carousel__footer {
  display: flex;
  flex-wrap: wrap; /* com fonte ampliada, as setas descem para a linha de baixo */
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: 0.5rem;
}

.carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.carousel__dot {
  width: 0.6875rem;
  height: 0.6875rem;
  padding: 0;
  border: 2px solid var(--muted);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease,
    width 180ms ease;
}

.carousel__dot.is-active {
  width: 1.625rem;
  border-color: var(--purple);
  background: var(--purple);
}

.section--ink .carousel__dot {
  border-color: #8d86a0;
}

.section--ink .carousel__dot.is-active {
  border-color: var(--lilac-on-ink);
  background: var(--lilac-on-ink);
}

.carousel__nav {
  display: flex;
  gap: 0.625rem;
}

.carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease,
    transform 180ms ease;
}

.carousel__btn:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.carousel__btn[disabled] {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.section--ink .carousel__btn {
  border-color: #e9e5f2;
  color: #e9e5f2;
}

.section--ink .carousel__btn:hover {
  background: #e9e5f2;
  color: var(--ink);
}

.section-more {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 0.25rem;
  border-bottom: 3px solid var(--purple);
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: gap 200ms ease, color 200ms ease;
}

.arrow-link:hover {
  gap: 1rem;
  color: var(--purple-text);
}

.arrow-link--light {
  color: var(--paper);
  border-color: var(--lilac-on-ink);
}

.arrow-link--light:hover {
  color: var(--lilac-on-ink);
}

/* ============================================================
   Podcast — player leve, carregado só no clique
   ============================================================ */

.video {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 1.25rem 3rem rgba(20, 17, 26, 0.22);
}

.video__poster,
.video__frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video__poster {
  position: relative;
  padding: 0;
  background: var(--ink);
  cursor: pointer;
}

.video__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, opacity 300ms ease;
}

.video__poster:hover .video__thumb,
.video__poster:focus-visible .video__thumb {
  transform: scale(1.03);
  opacity: 0.85;
}

.video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video__play svg {
  width: clamp(3.5rem, 12vw, 5rem);
  height: clamp(3.5rem, 12vw, 5rem);
  padding: clamp(0.9rem, 3vw, 1.25rem);
  fill: var(--white);
  background: var(--purple);
  border-radius: 999px;
  box-shadow: 0 0.75rem 2rem rgba(20, 17, 26, 0.35);
  transition: transform 220ms ease, background-color 220ms ease;
}

.video__poster:hover .video__play svg,
.video__poster:focus-visible .video__play svg {
  transform: scale(1.08);
  background: var(--purple-deep);
}

/* ============================================================
   Chamada final
   ============================================================ */

.chat__inner {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  max-width: 40rem;
  text-align: center;
}

/* Itens de grid não encolhem abaixo do min-content por padrão: sem isso,
   o título estoura a lateral quando a pessoa amplia muito a fonte */
.chat__inner > * {
  min-width: 0;
  max-width: 100%;
}

.chat__text {
  font-size: 1.0625rem;
  color: #ece5ff;
  margin: 0;
}

.chat__hand {
  margin: 0;
  color: var(--lilac-strong);
}

/* ============================================================
   Rodapé
   ============================================================ */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(2.75rem, 7vw, 4.5rem) 1.75rem;
}

.footer__grid {
  display: grid;
  gap: 2.25rem;
}

.brand--footer {
  font-size: 1.5rem;
  color: var(--paper);
}

.brand--footer span {
  color: var(--lilac-on-ink);
}

.footer__tagline {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  letter-spacing: 0.18em;
  color: #a49db3;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a,
.footer__legal a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 2.75rem;
  font-weight: 600;
  color: var(--paper);
  transition: color 160ms ease;
}

.footer__links a:hover,
.footer__legal a:hover {
  color: var(--lilac-on-ink);
}

.footer__links .icon {
  color: var(--lilac-on-ink);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-content: start;
}

.footer__legal a {
  font-weight: 500;
  color: #beb8cb;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 247, 242, 0.14);
  font-size: 0.875rem;
  color: #a49db3;
}

/* ============================================================
   Animações de entrada
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Breakpoints
   ============================================================ */

/* Tablets */
@media (min-width: 48rem) {
  /* Em duas colunas, os títulos escalam com a largura da coluna */
  .hero-title {
    font-size: clamp(2.75rem, 7vw, 6rem);
  }

  .section-title {
    font-size: clamp(2rem, 5.2vw, 4rem);
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .hero__media {
    justify-self: end;
    width: 100%;
  }

  .about__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .about__media {
    justify-self: end;
  }

  .carousel__item {
    flex-basis: min(44%, 21rem);
  }


  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer__legal {
    justify-self: end;
    text-align: right;
  }

  .footer__legal a {
    justify-content: flex-end;
  }

  .footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
}

/* Notebooks e desktops */
@media (min-width: 64rem) {
  .menu-toggle {
    display: none;
  }

  .menu {
    position: absolute;
    inset: 0;
    z-index: 96; /* acima da barra; cliques passam pelo restante (pointer-events: none) */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    overflow: visible;
    pointer-events: none;
  }

  .menu__list {
    flex-direction: row;
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
    pointer-events: auto;
  }

  .menu__link {
    padding: 0.25rem 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .menu__link:hover {
    transform: none;
  }

  .menu__link--chat {
    display: none;
  }

  .menu__hand {
    display: none;
  }

  .carousel__item {
    flex-basis: calc((100% - 3 * clamp(0.875rem, 2.5vw, 1.5rem)) / 4);
  }

  /* Larguras máximas mantêm as fotos verticais em uma altura confortável
     em vez de deixá-las esticar até o pé da tela */
  .hero__media {
    max-width: 28rem;
  }

  .about__media {
    max-width: 26rem;
  }

  /* No desktop há altura de sobra: as fotos voltam à proporção cheia 4:5
     em vez de serem cortadas pelo teto pensado para telas de celular */
  .hero__media img,
  .about__media img,
  .card__media img {
    max-height: none;
  }
}

/* Telas grandes */
@media (min-width: 90rem) {
  :root {
    --shell: 80rem;
  }
}

/* Telas muito pequenas: o botão do topo fica só com o ícone */
@media (max-width: 23.75rem) {
  .button--chat__label {
    display: none;
  }

  .button--pill {
    width: 2.75rem;
    padding: 0;
  }
}

/* ============================================================
   Redução de movimento
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
