/* ==========================================================================
   Angélica Mendes — Manicure e Pedicure
   Estilos principais (mobile first)
   --------------------------------------------------------------------------
   1. Variáveis
   2. Base
   3. Utilitários e componentes (botões, títulos)
   4. Header e menu
   5. Hero
   6. Diferenciais
   7. Serviços
   8. Sobre
   9. Como funciona
   10. Galeria e lightbox
   11. Avaliações
   12. FAQ
   13. CTA final
   14. Rodapé
   15. WhatsApp flutuante
   16. Breakpoints maiores
   17. Movimento reduzido
   ========================================================================== */

/* 1. Variáveis ------------------------------------------------------------ */
:root {
  --background: #FFF9F8;
  --background-secondary: #FBEFEC;
  --rose-light: #FBD5E1;   /* rosa do fundo da logo */
  --rose: #C94F70;
  --rose-dark: #9A1846;    /* magenta da logo, escurecido para contraste */
  --rose-darker: #7E1239;
  --text: #35292C;
  --text-soft: #6E5F63;
  --line: #EEDDDA;
  --gold: #C6A15B;
  --white: #FFFFFF;

  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "URW Palladio L", Georgia, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-pill: 999px;

  --header-h: 68px;
  --container: 1120px;
  --gutter: 20px;
  --section-y: 72px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

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

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--rose-dark); text-underline-offset: 3px; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
[hidden] { display: none !important; }

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

::selection { background: var(--rose-light); color: var(--text); }

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

.icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--rose-dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* 3. Utilitários e componentes ------------------------------------------- */
.section { padding-block: var(--section-y); }
.section--tint { background: var(--background-secondary); }

.section__header {
  max-width: 560px;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-dark);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--text);
}

.section__lead {
  margin-top: 14px;
  color: var(--text-soft);
}

.note {
  font-size: .9375rem;
  color: var(--text-soft);
}

.divider {
  display: block;
  width: 44px;
  height: 1px;
  margin-top: 22px;
  background: var(--gold);
}
.divider--center { margin: 0 auto 28px; }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .01em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.btn--primary {
  background: var(--rose-dark);
  color: var(--white);
}
.btn--primary:hover { background: var(--rose-darker); }

.btn--ghost {
  background: transparent;
  color: var(--rose-dark);
  border-color: rgba(154, 24, 70, .35);
}
.btn--ghost:hover {
  background: var(--white);
  border-color: var(--rose-dark);
}

.btn--sm { min-height: 44px; padding: 8px 20px; font-size: .9375rem; }
.btn--lg { min-height: 56px; padding: 14px 34px; font-size: 1.0625rem; }

/* Moldura de imagens (com fallback quando a imagem não existe) */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 80% at 80% 10%, rgba(244, 214, 215, .9), transparent 60%),
    var(--background-secondary);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame.is-missing img { visibility: hidden; }
.media-frame.is-missing::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: .6;
}

/* 4. Header e menu -------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 248, .94);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
/* O desfoque fica num pseudo-elemento: backdrop-filter no próprio header
   prenderia o menu mobile (position: fixed) dentro dele. */
@supports (backdrop-filter: blur(8px)) {
  .header { background: transparent; }
  .header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 249, 248, .82);
    -webkit-backdrop-filter: saturate(1.4) blur(10px);
    backdrop-filter: saturate(1.4) blur(10px);
  }
}
.header.is-scrolled { border-bottom-color: var(--line); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}
.brand__logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
}
.brand__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  line-height: 1.1;
  color: var(--rose-dark);
  white-space: nowrap;
}
.brand__text small {
  margin-top: 3px;
  font-family: var(--font-sans);
  font-size: .625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Botão hambúrguer */
.menu-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-right: -10px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s var(--ease), background-color .2s;
}
.menu-toggle__bar { position: relative; }
.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle__bar::before { transform: translateY(-7px); }
.menu-toggle__bar::after { transform: translateY(7px); }

.menu-toggle[aria-expanded="true"] .menu-toggle__bar { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar::after { transform: rotate(-45deg); }

/* Menu mobile */
.nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px var(--gutter) 40px;
  background: var(--background);
  border-top: 1px solid var(--line);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
}
.nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s;
}

.nav__list a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--text);
  text-decoration: none;
}
.nav__list a:hover { color: var(--rose-dark); }

.nav__cta { align-self: stretch; min-height: 52px; }

body.menu-open { overflow: hidden; }

/* 5. Hero ----------------------------------------------------------------- */
.hero { padding-block: 32px 64px; }

.hero__inner {
  display: grid;
  gap: 40px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  font-weight: 400;
}
.hero__title .eyebrow { margin-bottom: 18px; }

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 1.6rem + 3.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--text);
}

.hero__text {
  max-width: 34rem;
  margin-top: 20px;
  font-size: 1.0625rem;
  color: var(--text-soft);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.hero__media {
  aspect-ratio: 4 / 5;
  max-height: 560px;
  width: 100%;
}

/* 6. Diferenciais --------------------------------------------------------- */
.features {
  padding-block: 8px 24px;
}
.features__list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 16px;
  align-items: start;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}
.feature__icon {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  color: var(--rose);
}
.feature__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
.feature__text {
  font-size: .9375rem;
  color: var(--text-soft);
}

/* 7. Serviços ------------------------------------------------------------- */
.price-list {
  border-top: 1px solid var(--line);
}
.price-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 12px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}
.price-item__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.25;
}
.price-item__dots {
  flex: 1;
  min-width: 16px;
  border-bottom: 1px dotted rgba(198, 161, 91, .8);
}
.price-item__price {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  line-height: 1.25;
  color: var(--rose-dark);
  white-space: nowrap;
}
.price-item__desc {
  flex-basis: 100%;
  margin-top: 4px;
  font-size: .9375rem;
  color: var(--text-soft);
}

.services__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 36px;
}

/* 8. Sobre ---------------------------------------------------------------- */
.about {
  display: grid;
  gap: 28px;
}
.about__text {
  display: grid;
  gap: 18px;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.75;
}
.about__text p:first-child {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  line-height: 1.6;
}
.about__text p:last-child { color: var(--text-soft); }

/* 9. Como funciona -------------------------------------------------------- */
.steps {
  display: grid;
  gap: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.step__number {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: .08em;
  color: var(--gold);
}
.step__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.3;
}
.step__text {
  margin-top: 8px;
  color: var(--text-soft);
}

.steps__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  padding: 16px 20px;
  background: var(--background-secondary);
  border-radius: var(--radius);
  font-size: .9375rem;
  color: var(--text);
}
.steps__note .icon { color: var(--rose-dark); }
.steps__cta { margin-top: 28px; }

/* 10. Galeria e lightbox -------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.gallery__item.is-missing { display: none; }

.gallery__button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--rose-light);
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
}
.gallery__button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s var(--ease), transform .6s var(--ease);
}
.gallery__button:hover img { opacity: .92; }

.gallery__empty { margin-top: 8px; }
.gallery__more {
  margin-top: 28px;
  font-size: .9375rem;
  color: var(--text-soft);
}
.gallery__more a { font-weight: 500; }

.lightbox {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(35, 25, 28, .94);
  color: var(--white);
}
.lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox::backdrop { background: rgba(35, 25, 28, .6); }

.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 64px 16px 24px;
  max-width: 100%;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  max-height: calc(100dvh - 140px);
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
}
.lightbox__counter {
  font-size: .875rem;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .75);
}

.lightbox__btn {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background-color .2s;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .2); }
.lightbox__btn:focus-visible { outline-color: var(--white); }
.lightbox__close { top: 12px; right: 12px; }
.lightbox__prev,
.lightbox__next { bottom: 20px; }
.lightbox__prev { left: calc(50% - 58px); }
.lightbox__next { right: calc(50% - 58px); }
.lightbox__btn[hidden] { display: none; }
.lightbox.is-single .lightbox__figure { padding-bottom: 24px; }

/* 11. Avaliações (Google) ---------------------------------------------- */
.review-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.review-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-soft);
}
.review-cta__label .icon { width: 18px; height: 18px; }
.review-cta__text {
  max-width: 30rem;
  margin: 14px 0 28px;
  font-size: 1.0625rem;
  color: var(--text-soft);
}
.review-cta__hint {
  margin-top: 12px;
  font-size: .8125rem;
  color: var(--text-soft);
}

.btn--review {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--rose-dark);
  font-weight: 600;
}
.btn--review:hover { background: var(--background-secondary); }
.icon--star { color: var(--gold); }

.reviews__list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.review {
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.review__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--gold);
}
.review__stars .icon { width: 16px; height: 16px; }
.review__text {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.6;
}
.review__author {
  margin-top: 14px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-soft);
}

/* 12. FAQ ----------------------------------------------------------------- */
.faq__list {
  max-width: 760px;
  border-top: 1px solid rgba(154, 24, 70, .14);
}
.faq__item { border-bottom: 1px solid rgba(154, 24, 70, .14); }

.faq__item summary {
  position: relative;
  display: block;
  padding: 20px 44px 20px 0;
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before,
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--rose-dark);
  transition: transform .25s var(--ease);
}
.faq__item summary::after { transform: rotate(90deg); }
.faq__item[open] summary::after { transform: rotate(0deg); }
.faq__item summary:hover { color: var(--rose-dark); }

.faq__item p {
  padding: 0 44px 22px 0;
  color: var(--text-soft);
}

/* 13. Contato ------------------------------------------------------------ */
.contact {
  padding-block: 80px;
  background: linear-gradient(180deg, var(--background-secondary) 0%, #FBE3EA 100%);
  text-align: center;
}
.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
}
.contact__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--rose-dark);
}
.contact__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 1.4rem + 2.4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.contact__text {
  max-width: 30rem;
  margin: 14px auto 28px;
  color: var(--text-soft);
}
.contact__channels {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 40px;
  text-align: left;
}
.contact__channels a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  overflow-wrap: break-word;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.contact__channels a:hover { background: var(--white); border-color: rgba(154, 24, 70, .35); }
.contact__channels .icon { width: 22px; height: 22px; color: var(--rose-dark); }
.contact__channels span { display: flex; flex-direction: column; min-width: 0; line-height: 1.35; }
.contact__channels small {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* 14. Rodapé -------------------------------------------------------------- */
.footer {
  padding-top: 56px;
  padding-bottom: 96px; /* espaço para o botão flutuante não cobrir o conteúdo */
  background: var(--background);
  border-top: 1px solid var(--line);
  font-size: .9375rem;
}
.footer__inner {
  display: grid;
  gap: 36px;
}
.footer__logo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
}
.footer__info {
  margin-top: 18px;
  line-height: 1.7;
  color: var(--text-soft);
}
.footer__info strong { font-weight: 600; color: var(--text); }

.footer__links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--text);
  text-decoration: none;
}
.footer__links a:hover { color: var(--rose-dark); }
.footer__links .icon { color: var(--rose-dark); }
.footer__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .8125rem;
  color: var(--text-soft);
}

/* 15. WhatsApp flutuante -------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 54px;
  height: 54px;
  background: var(--rose-dark);
  color: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(154, 24, 70, .22);
  text-decoration: none;
  transition: background-color .2s var(--ease), opacity .25s var(--ease), transform .25s var(--ease);
}
.whatsapp-float:hover { background: var(--rose-darker); }
.whatsapp-float .icon { width: 26px; height: 26px; }
.whatsapp-float__label { display: none; }
body.menu-open .whatsapp-float { opacity: 0; pointer-events: none; }

/* 16. Breakpoints maiores ------------------------------------------------- */

/* Celulares muito pequenos (320px) */
@media (max-width: 359px) {
  :root { --gutter: 16px; }
  .price-item__name,
  .price-item__price { font-size: 1.1875rem; }
  .brand__logo { width: 42px; height: 42px; }
  .brand__text { font-size: 1.0625rem; }
  .brand__text small { font-size: .5625rem; letter-spacing: .12em; }
}

/* ≥ 480px */
@media (min-width: 480px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; }
  .gallery { gap: 14px; }
}

/* ≥ 768px (tablet) */
@media (min-width: 768px) {
  :root {
    --gutter: 32px;
    --section-y: 96px;
  }

  .hero { padding-block: 48px 80px; }
  .hero__inner {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 48px;
  }
  .hero__media { max-height: none; }

  .features { padding-block: 0 40px; }
  .features__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
    gap: 0 40px;
  }
  .feature { border-top: 1px solid var(--line); border-bottom: 0; padding-block: 26px; }

  .services {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    column-gap: 64px;
  }
  .services .section__header { grid-row: span 2; margin-bottom: 0; }

  .about {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 64px;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }

  .gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .review-cta { align-items: center; padding: 56px; text-align: center; }
  .review-cta__text { margin-inline: auto; }
  .reviews__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .contact { padding-block: 112px; }
  .contact__channels { max-width: 520px; }

  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  .footer__side { align-items: flex-end; }
  .footer__links ul { justify-content: flex-end; }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .whatsapp-float {
    right: 24px;
    bottom: 24px;
    width: auto;
    padding: 0 22px 0 18px;
    height: 50px;
  }
  .whatsapp-float .icon { width: 22px; height: 22px; }
  .whatsapp-float__label { display: inline; font-size: .9375rem; font-weight: 500; }

  .lightbox__prev,
  .lightbox__next { bottom: auto; top: 50%; transform: translateY(-50%); }
  .lightbox__prev { left: 24px; }
  .lightbox__next { right: 24px; }
  .lightbox__close { top: 20px; right: 24px; }
  .lightbox__figure { padding: 48px 96px; }
  .lightbox__figure img { max-height: calc(100vh - 120px); max-height: calc(100dvh - 120px); }
}

/* ≥ 1024px (desktop: menu horizontal) */
@media (min-width: 1024px) {
  :root {
    --header-h: 80px;
    --section-y: 120px;
  }

  .brand__logo { width: 54px; height: 54px; }
  .brand__text { font-size: 1.25rem; }

  .menu-toggle { display: none; }

  .nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    padding: 0;
    background: none;
    border: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav__list {
    display: flex;
    gap: 28px;
  }
  .nav__list a {
    position: relative;
    padding: 10px 0;
    border: 0;
    font-family: var(--font-sans);
    font-size: .9375rem;
    color: var(--text);
  }
  .nav__list a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 4px;
    height: 1px;
    background: var(--rose-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .nav__list a:hover::after,
  .nav__list a.is-active::after { transform: scaleX(1); }
  .nav__cta { align-self: auto; min-height: 44px; }

  body.menu-open { overflow: visible; }

  .hero { padding-block: 64px 96px; }
  .hero__inner { gap: 80px; }
  .hero__text { font-size: 1.125rem; }

  .features__list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 32px; }
  .feature { grid-template-columns: 1fr; row-gap: 4px; }
  .feature__icon { grid-row: auto; margin-bottom: 12px; }

  .services { column-gap: 96px; }
  .about { gap: 96px; }

  .gallery { gap: 22px; }

  .contact__channels { max-width: none; grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ≥ 1440px */
@media (min-width: 1440px) {
  :root { --container: 1200px; }
}

/* 17. Movimento reduzido -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
