/* =========================================================
   MENINA DOCE — IDENTIDADE VISUAL
   ========================================================= */

:root {
  --blush: #F8E7E4;
  --rose: #D98787;
  --rose-deep: #C96F70;
  --chocolate: #4A2925;
  --gold: #C9A15A;
  --off-white: #FFF9F7;

  --rose-light: rgba(217, 135, 135, 0.12);
  --gold-light: rgba(201, 161, 90, 0.18);
  --line: rgba(74, 41, 37, 0.10);

  --shadow-soft: 0 18px 45px rgba(74, 41, 37, 0.08);
  --shadow-image: 0 25px 60px rgba(74, 41, 37, 0.15);
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--blush);
  color: var(--chocolate);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

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


/* =========================================================
   TEXTURE
   ========================================================= */

.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;

  background-image:
    radial-gradient(
      rgba(201, 111, 112, 0.10) 1px,
      transparent 1px
    );

  background-size: 28px 28px;
}


/* =========================================================
   TIPOGRAFIA
   ========================================================= */

.script {
  font-family: 'Alex Brush', cursive;
}

.display {
  font-family: 'Fraunces', serif;
}

.eyebrow {
  display: inline-block;

  text-transform: uppercase;
  letter-spacing: 0.22em;

  font-size: 0.70rem;
  font-weight: 600;

  color: var(--rose-deep);
}

h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 6vw;

  position: relative;
  z-index: 1;
}


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

header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(255, 249, 247, 0.90);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 6vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;

  border-radius: 50%;
  object-fit: cover;

  border: 1.5px solid var(--rose-deep);
}

.brand-name {
  font-family: 'Alex Brush', cursive;
  font-size: 1.95rem;

  color: var(--rose-deep);
  line-height: 1;
}

.brand-sub {
  margin-top: 4px;

  font-size: 0.60rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  color: var(--chocolate);
  opacity: 0.68;
}


/* Se você adicionar links ao menu depois */

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;

  margin-left: auto;
  margin-right: 32px;

  font-size: 0.84rem;
}

.nav-links a {
  position: relative;
  color: var(--chocolate);
  opacity: 0.78;

  transition: opacity 0.25s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a::after {
  content: '';

  position: absolute;
  left: 0;
  bottom: -5px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


/* =========================================================
   BOTÕES
   ========================================================= */

.nav-cta,
.btn-primary {
  background: var(--rose);
  color: var(--off-white);

  border: 1px solid var(--rose);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;

  box-shadow: 0 8px 22px rgba(201, 111, 112, 0.20);
}

.nav-cta {
  padding: 12px 24px;
  border-radius: 3px;

  font-size: 0.82rem;
  font-weight: 600;

  white-space: nowrap;
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);

  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(201, 111, 112, 0.28);
}

.btn-primary {
  display: inline-block;

  padding: 16px 30px;
  border-radius: 3px;

  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn-ghost {
  display: inline-block;

  font-size: 0.88rem;

  color: var(--rose-deep);

  border-bottom: 1px solid var(--rose-deep);

  padding-bottom: 3px;

  opacity: 0.9;

  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn-ghost:hover {
  color: var(--chocolate);
  border-color: var(--gold);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding: 82px 0 105px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 560px);
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
}

.hero-grid > div:first-child {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.7rem, 4.5vw, 4rem);

  line-height: 1.05;

  font-weight: 500;

  margin: 16px 0 24px;

  color: var(--rose-deep);
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero p.lead {
  max-width: 47ch;

  font-size: 1.03rem;
  line-height: 1.75;

  color: var(--chocolate);

  opacity: 0.82;

  margin-bottom: 34px;
}

.cta-row {
  display: flex;
  gap: 18px;

  flex-wrap: wrap;

  align-items: center;
}

.pills {
  display: flex;
  gap: 9px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.pill {
  font-size: 0.68rem;

  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: var(--rose-deep);

  border: 1px solid rgba(201, 111, 112, 0.45);

  padding: 7px 14px;

  border-radius: 30px;

  background: rgba(255, 249, 247, 0.60);
}


/* =========================================================
   BEFORE / AFTER
   ========================================================= */

.ba-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 0 0 auto;
}

.ba-frame {
  position: relative;
  width: 100%;
  min-height: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 900 / 966;
  box-shadow: var(--shadow-image);
  border: 1px solid rgba(201, 161, 90, 0.35);
  touch-action: none;
  cursor: ew-resize;
}

.ba-frame img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  user-select: none;
  -webkit-user-drag: none;
}

.ba-frame .after-img {
  clip-path: inset(0 0 0 50%);
}

.ba-tag {
  position: absolute;

  top: 14px;

  z-index: 3;

  font-size: 0.64rem;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  background: rgba(74, 41, 37, 0.78);

  color: var(--off-white);

  padding: 6px 12px;

  border-radius: 20px;

  backdrop-filter: blur(5px);
}

.ba-tag.before {
  left: 14px;
}

.ba-tag.after {
  right: 14px;
}

.ba-handle {
  position: absolute;

  top: 0;
  bottom: 0;
  left: 50%;

  width: 2px;

  background: var(--off-white);

  transform: translateX(-50%);

  z-index: 4;

  cursor: ew-resize;
}

.ba-handle::after {
  content: '⟷';

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 46px;
  height: 46px;

  border-radius: 50%;

  background: var(--off-white);

  color: var(--rose-deep);

  border: 1px solid rgba(201, 161, 90, 0.55);

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 1rem;

  box-shadow: 0 7px 18px rgba(74, 41, 37, 0.18);
}

.ba-caption {
  text-align: center;

  font-size: 0.76rem;

  color: var(--chocolate);

  opacity: 0.58;

  margin-top: 14px;

  letter-spacing: 0.03em;
}


/* =========================================================
   SEÇÕES
   ========================================================= */

section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  max-width: 650px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);

  font-weight: 500;

  line-height: 1.15;

  margin-top: 11px;

  color: var(--rose-deep);
}

.section-head p {
  margin-top: 15px;

  opacity: 0.76;

  line-height: 1.7;

  font-size: 1rem;
}

.divider {
  width: 58px;
  height: 2px;

  background: var(--gold);

  margin-top: 18px;
}


/* =========================================================
   SERVIÇOS
   ========================================================= */

.services {
  background: var(--off-white);

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.serv-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1px;

  background: var(--line);

  border: 1px solid var(--line);
}

.serv-card {
  background: var(--off-white);

  padding: 42px 30px;

  min-height: 245px;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.serv-card:hover {
  background: var(--blush);

  transform: translateY(-3px);
}

.serv-icon {
  font-family: 'Fraunces', serif;

  font-style: italic;

  font-size: 1.45rem;

  color: var(--gold);

  margin-bottom: 20px;
}

.serv-card h3 {
  font-size: 1.18rem;

  font-weight: 500;

  margin-bottom: 11px;

  color: var(--chocolate);
}

.serv-card p {
  font-size: 0.89rem;

  line-height: 1.7;

  color: var(--chocolate);

  opacity: 0.72;
}


/* =========================================================
   SERVIÇO — EM BREVE
   ========================================================= */

.serv-card.coming-soon {
  background:
    linear-gradient(
      135deg,
      var(--blush),
      var(--off-white)
    );

  position: relative;

  overflow: hidden;
}

.serv-card.coming-soon::before {
  content: 'EM BREVE';

  position: absolute;

  top: 20px;
  right: 20px;

  font-size: 0.58rem;

  letter-spacing: 0.15em;

  color: var(--gold);

  border: 1px solid var(--gold);

  padding: 5px 9px;

  border-radius: 20px;
}

.serv-card.coming-soon h3 {
  color: var(--rose-deep);
}


/* =========================================================
   DESTAQUE / DIFERENCIAL
   ========================================================= */

.diferenciais {
  background: var(--blush);
}

.diferenciais-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.diferencial-card {
  padding: 28px 24px;

  background: rgba(255, 249, 247, 0.60);

  border: 1px solid var(--line);

  border-radius: 5px;
}

.diferencial-number {
  color: var(--gold);

  font-family: 'Fraunces', serif;

  font-style: italic;

  font-size: 1.3rem;

  margin-bottom: 14px;
}

.diferencial-card h3 {
  color: var(--chocolate);

  font-size: 1.05rem;

  margin-bottom: 9px;
}

.diferencial-card p {
  font-size: 0.86rem;

  line-height: 1.65;

  opacity: 0.72;
}


/* =========================================================
   SOBRE
   ========================================================= */

.sobre {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 70px;

  align-items: center;
}

.sobre h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);

  font-weight: 500;

  color: var(--rose-deep);

  margin-top: 10px;
}

.sobre p {
  margin-top: 17px;

  line-height: 1.75;

  color: var(--chocolate);

  opacity: 0.82;
}

.sobre-stats {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;

  margin-top: 34px;
}

.stat-box {
  border-left: 2px solid var(--gold);

  padding-left: 17px;
}

.stat-box .num {
  font-family: 'Fraunces', serif;

  font-size: 1.7rem;

  color: var(--rose-deep);

  display: block;
}

.stat-box .label {
  font-size: 0.78rem;

  opacity: 0.68;
}


/* =========================================================
   GALERIA
   ========================================================= */

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.g-item {
  position: relative;

  border-radius: 7px;

  overflow: hidden;

  aspect-ratio: 3 / 3.6;

  background: var(--off-white);

  border: 1px solid rgba(201, 161, 90, 0.20);
}

.g-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.55s ease;
}

.g-item:hover img {
  transform: scale(1.05);
}

.g-label {
  position: absolute;

  bottom: 0;
  left: 0;
  right: 0;

  padding: 30px 16px 15px;

  background:
    linear-gradient(
      to top,
      rgba(74, 41, 37, 0.65),
      transparent
    );

  color: var(--off-white);

  font-size: 0.78rem;

  letter-spacing: 0.03em;
}


/* =========================================================
   PORTFÓLIO
   ========================================================= */

.portfolio {
  background: var(--chocolate);

  color: var(--off-white);
}

.portfolio .section-head h2 {
  color: var(--off-white);
}

.portfolio .section-head p {
  color: var(--blush);

  opacity: 0.88;
}

.portfolio .eyebrow {
  color: var(--rose);
}

.strip {
  display: flex;

  gap: 18px;

  overflow-x: auto;

  padding-bottom: 14px;

  scrollbar-width: thin;
}

.strip::-webkit-scrollbar {
  height: 5px;
}

.strip::-webkit-scrollbar-thumb {
  background: var(--rose);

  border-radius: 10px;
}

.strip-item {
  flex: 0 0 auto;

  width: 230px;

  border-radius: 7px;

  overflow: hidden;

  aspect-ratio: 3 / 4;

  border: 1px solid rgba(201, 161, 90, 0.25);
}

.strip-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.strip-item:hover img {
  transform: scale(1.04);
}


/* =========================================================
   CÍLIOS — EM BREVE
   ========================================================= */

.lashes-coming {
  background: var(--off-white);

  text-align: center;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lashes-coming-inner {
  max-width: 650px;

  margin: 0 auto;
}

.lashes-coming h2 {
  color: var(--rose-deep);

  font-size: clamp(2rem, 4vw, 3rem);

  font-weight: 500;

  margin: 12px 0 18px;
}

.lashes-coming p {
  max-width: 48ch;

  margin: 0 auto;

  line-height: 1.7;

  opacity: 0.76;
}

.coming-label {
  display: inline-block;

  margin-top: 25px;

  padding: 7px 15px;

  border: 1px solid var(--gold);

  border-radius: 30px;

  color: var(--gold);

  font-size: 0.68rem;

  text-transform: uppercase;

  letter-spacing: 0.16em;
}


/* =========================================================
   QUOTE
   ========================================================= */

.quote {
  text-align: center;

  max-width: 760px;

  margin: 0 auto;

  padding: 110px 6vw;
}

.quote p {
  font-family: 'Fraunces', serif;

  font-style: italic;

  font-size: clamp(1.5rem, 2.7vw, 2rem);

  line-height: 1.5;

  color: var(--rose-deep);
}

.quote span {
  display: block;

  margin-top: 20px;

  font-family: 'Jost', sans-serif;

  font-style: normal;

  font-size: 0.82rem;

  opacity: 0.6;

  letter-spacing: 0.05em;
}


/* =========================================================
   DEPOIMENTOS
   ========================================================= */

.depo-grid,
.testi-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.depo-card,
.testi-card {
  background: var(--off-white);

  border: 1px solid var(--line);

  padding: 30px;

  border-radius: 6px;

  position: relative;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.depo-card:hover,
.testi-card:hover {
  transform: translateY(-3px);

  box-shadow: var(--shadow-soft);
}

.depo-card .stars {
  color: var(--gold);

  font-size: 0.88rem;

  margin-bottom: 13px;

  letter-spacing: 2px;
}

.depo-card p,
.testi-card p {
  font-family: 'Fraunces', serif;

  font-style: italic;

  font-size: 0.96rem;

  line-height: 1.7;

  color: var(--chocolate);

  opacity: 0.88;
}

.depo-card .who,
.testi-name {
  display: block;

  margin-top: 17px;

  color: var(--rose-deep);

  font-size: 0.78rem;

  font-weight: 500;

  letter-spacing: 0.05em;
}



/* =========================================================
   LOCALIZAÇÃO
   ========================================================= */

.loc {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: stretch;
}

.loc-card,
.loc-map {
  min-height: 390px;
  border-radius: 18px;
}

.loc-card {
  background: rgba(255, 249, 247, 0.82);
  border: 1px solid rgba(201, 161, 90, 0.18);
  padding: 42px;
  box-shadow: 0 18px 45px rgba(74, 41, 37, 0.08);
  backdrop-filter: blur(6px);
}

.loc-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(74, 41, 37, 0.08);
  align-items: center;
}

.loc-row:last-child {
  border-bottom: none;
}

.loc-row .k {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--rose-deep);
  font-size: 1rem;
}

.loc-row .v {
  font-size: 1rem;
  color: var(--chocolate);
  opacity: 0.85;
  line-height: 1.55;
}

.loc-row .v .btn-ghost {
  font-size: 0.95rem;
}

.loc-map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 161, 90, 0.22);
  background:
    radial-gradient(circle at 25% 30%, rgba(217, 135, 135, 0.20), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(201, 161, 90, 0.14), transparent 30%),
    radial-gradient(circle at 70% 78%, rgba(217, 135, 135, 0.12), transparent 25%),
    linear-gradient(145deg, rgba(255,249,247,0.98), rgba(248,231,228,0.92));
  box-shadow: 0 18px 45px rgba(74, 41, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.loc-map::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 14px;
  border: 1px solid rgba(201, 161, 90, 0.16);
  pointer-events: none;
}

.loc-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 247, 0.92);
  border: 1px solid rgba(201, 161, 90, 0.22);
  color: var(--rose-deep);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.loc-center {
  text-align: center;
  max-width: 300px;
  position: relative;
  z-index: 1;
}

.pin {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 28px rgba(201, 111, 112, 0.26);
}

.pin::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--off-white);
  transform: rotate(45deg);
}

.loc-map .city {
  display: block;
  position: static;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--chocolate);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.loc-note {
  display: block;
  font-size: 0.96rem;
  color: var(--chocolate);
  opacity: 0.72;
  line-height: 1.65;
  max-width: 28ch;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .loc {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .loc-card,
  .loc-map {
    min-height: auto;
  }

  .loc-card {
    padding: 28px 24px;
  }

  .loc-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .loc-map {
    min-height: 340px;
    padding: 24px;
  }

  .loc-badge {
    top: 18px;
    left: 18px;
    font-size: 0.65rem;
    padding: 7px 12px;
  }

  .loc-map .city {
    font-size: 1.5rem;
  }

  .loc-note {
    font-size: 0.9rem;
  }
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  background:
    linear-gradient(
      135deg,
      var(--rose-deep),
      var(--rose)
    );

  color: var(--off-white);

  text-align: center;

  padding: 110px 6vw;

  position: relative;

  overflow: hidden;
}

.final-cta::before {
  content: '✦';

  position: absolute;

  top: 35px;
  left: 10%;

  color: rgba(255, 249, 247, 0.45);

  font-size: 1.3rem;
}

.final-cta::after {
  content: '✦';

  position: absolute;

  bottom: 35px;
  right: 10%;

  color: rgba(255, 249, 247, 0.45);

  font-size: 1rem;
}

.final-cta h2 {
  font-family: 'Fraunces', serif;

  font-weight: 500;

  font-size: clamp(2rem, 4vw, 3rem);

  max-width: 18ch;

  margin: 0 auto 20px;
}

.final-cta p {
  opacity: 0.90;

  max-width: 48ch;

  margin: 0 auto 36px;

  line-height: 1.65;
}

.final-cta .btn-primary {
  background: var(--off-white);

  color: var(--rose-deep);

  border-color: var(--off-white);

  box-shadow: none;
}

.final-cta .btn-primary:hover {
  background: var(--chocolate);

  color: var(--off-white);

  border-color: var(--chocolate);
}


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

footer {
  padding: 46px 6vw;

  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-wrap: wrap;

  gap: 16px;

  font-size: 0.80rem;

  color: var(--chocolate);

  opacity: 0.72;
}

footer .brand-name {
  color: var(--rose-deep);

  font-size: 1.4rem;
}


/* =========================================================
   ACESSIBILIDADE
   ========================================================= */

:focus-visible {
  outline: 2px solid var(--gold);

  outline-offset: 4px;
}


/* =========================================================
   RESPONSIVIDADE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.4rem);
  }

  .ba-wrap {
    width: 100%;
    max-width: 430px;
    margin-left: auto;
  }

  .serv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre {
    grid-template-columns: 1fr;

    gap: 50px;
  }
}


/* =========================================================
   RESPONSIVIDADE — MOBILE
   ========================================================= */

@media (max-width: 880px) {

  .nav {
    padding: 12px 5vw;
  }

  .nav-links {
    display: none;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .brand-sub {
    font-size: 0.55rem;
  }

  .nav-cta {
    padding: 10px 16px;

    font-size: 0.72rem;
  }

  .hero {
    padding: 55px 0 75px;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .hero p.lead {
    font-size: 0.98rem;
  }

  .ba-wrap {
    width: min(100%, 480px);
    max-width: 480px;
    margin: 0 auto;
  }

  section {
    padding: 75px 0;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .serv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .loc {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .depo-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   RESPONSIVIDADE — CELULAR
   ========================================================= */

@media (max-width: 560px) {

  .wrap {
    padding: 0 5vw;
  }

  .nav {
    padding: 11px 5vw;
  }

  .nav-cta {
    padding: 9px 13px;
  }

  .hero {
    padding-top: 45px;
  }

  .eyebrow {
    font-size: 0.62rem;

    letter-spacing: 0.17em;

    line-height: 1.7;
  }

  .hero h1 {
    font-size: 2.55rem;

    line-height: 1.08;
  }

  .hero p.lead {
    font-size: 0.94rem;

    line-height: 1.7;
  }


  .ba-wrap {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
  }

  .ba-frame {
    border-radius: 8px;
  }

  .cta-row {
    flex-direction: column;

    align-items: stretch;
  }

  .btn-primary {
    width: 100%;

    text-align: center;

    padding: 15px 20px;
  }

  .btn-ghost {
    align-self: center;

    margin-top: 4px;
  }

  .pills {
    gap: 7px;

    margin-top: 25px;
  }

  .pill {
    font-size: 0.61rem;

    padding: 6px 10px;
  }

  .serv-grid {
    grid-template-columns: 1fr;
  }

  .serv-card {
    min-height: auto;

    padding: 34px 25px;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;

    gap: 10px;
  }

  .g-item {
    border-radius: 5px;
  }

  .g-label {
    font-size: 0.67rem;

    padding: 25px 10px 10px;
  }

  .sobre-stats {
    grid-template-columns: 1fr 1fr;

    gap: 15px;
  }

  .stat-box .num {
    font-size: 1.4rem;
  }

  .loc-card {
    padding: 25px 20px;
  }

  .loc-row {
    flex-direction: column;

    gap: 5px;
  }

  .loc-row .k {
    min-width: 0;
  }

  .quote {
    padding: 75px 5vw;
  }

  .quote p {
    font-size: 1.4rem;
  }

  .final-cta {
    padding: 80px 5vw;
  }

  footer {
    padding: 35px 5vw;

    flex-direction: column;

    align-items: flex-start;
  }
}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;

    animation: none !important;

    scroll-behavior: auto !important;
  }
}