/* ============================================================
   KELLY JALECOS E BORDADOS — style.css
   ============================================================ */

/* ── 1. Custom Properties & Reset ── */
:root {
  --black: #1A1614;
  --red: #E63946;
  --white: #FFFCF8;
  --bg: #F5F0EB;
  --bg-dark: #EDE6DD;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
}

/* ── 2. Utilities ── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--red);
}

/* ── 3. Button System ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, transform 240ms ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--primary:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: currentColor;
}

.btn--ghost:hover {
  background: rgba(26, 22, 20, 0.06);
  transform: translateY(-1px);
}

.btn--large {
  padding: 1.1rem 2.75rem;
  font-size: 0.85rem;
}

/* ── 4. Navigation ── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 400ms ease, backdrop-filter 400ms ease, border-color 400ms ease;
  border-bottom: 1px solid transparent;
  /* thin red brand bar at very top */
  border-top: 3px solid var(--red);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 2.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.65);
  transition: color 300ms ease;
}

.nav__links a:hover {
  color: rgba(245, 240, 235, 1);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(245, 240, 235, 0.7);
  transition: transform 300ms ease, opacity 300ms ease;
}

/* Frosted glass on scroll — reverts to light */
.nav--scrolled {
  background: rgba(255, 252, 248, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(26, 22, 20, 0.08);
}

/* logo reverts to original dark version when nav is light */
.nav--scrolled .nav__logo img {
  filter: none;
}

.nav--scrolled .nav__links a {
  color: rgba(26, 22, 20, 0.6);
}

.nav--scrolled .nav__links a:hover {
  color: var(--black);
}

.nav--scrolled .nav__hamburger span {
  background: var(--black);
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid rgba(26, 22, 20, 0.08);
  border-bottom: 1px solid rgba(26, 22, 20, 0.08);
  padding: 1.5rem 2.5rem;
  box-shadow: 0 8px 32px rgba(26, 22, 20, 0.06);
}

.nav__mobile-menu.nav__mobile-menu--open {
  display: block;
}

.nav__mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav__mobile-menu a {
  font-size: 1rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.nav__mobile-menu a:hover {
  opacity: 1;
}

/* ── 5. Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  padding-bottom: 3rem;
  background: #19160F;
  text-align: center;
  overflow: hidden;
}

/* Subtle warm vignette overlay */
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(139, 111, 92, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(26, 22, 20, 0.6) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-inline: 3rem;
  max-width: 820px;
  width: 100%;
}

.hero__logo {
  height: 80px;
  width: auto;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  object-fit: contain;
}

.hero__eyebrow {
  color: rgba(245, 240, 235, 0.45);
  margin-bottom: 2.25rem;
  letter-spacing: 0.2em;
  padding-top: 1.5rem;
  position: relative;
}

/* small red line above eyebrow — brand accent */
.hero__eyebrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero__italic {
  font-style: italic;
  color: var(--red);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.8;
  color: rgba(245, 240, 235, 0.5);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero-specific button variants (dark bg context) */
.btn--hero-primary {
  background: rgba(245, 240, 235, 0.12);
  color: var(--white);
  border: 1px solid rgba(245, 240, 235, 0.3);
  backdrop-filter: blur(8px);
}

.btn--hero-primary:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.btn--hero-outline {
  background: transparent;
  color: rgba(245, 240, 235, 0.65);
  border: 1px solid rgba(245, 240, 235, 0.3);
}

.btn--hero-outline:hover {
  background: rgba(245, 240, 235, 0.08);
  color: var(--white);
  border-color: rgba(245, 240, 235, 0.35);
  transform: translateY(-1px);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 240, 235, 0.25);
  animation: bounce 2.4s ease-in-out infinite;
  z-index: 1;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

#nav-sentinel {
  height: 1px;
  pointer-events: none;
}

/* ── 6. Showcase ── */
.showcase {
  position: relative;
  height: 800vh;
}

.showcase__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.showcase__bg {
  position: absolute;
  inset: 0;
  background-color: #E8F5EE;
  transition: background-color 700ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* Vertical progress bar — left edge */
.showcase__progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(26, 22, 20, 0.08);
  z-index: 2;
}

.showcase__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--black);
  transition: height 120ms linear;
}

/* Main layout grid */
.showcase__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 42% 1fr 52px;
  grid-template-areas: "info image details dots";
  height: 110%;
  align-items: center;
  padding-inline: 3rem 1rem;
  gap: 0 2rem;
}

/* Info panel — left */
.showcase__info {
  grid-area: info;
  padding-right: 1rem;
}

.showcase__tag {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 0.875rem;
}

.showcase__name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.showcase__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.65;
  max-width: 300px;
  margin-bottom: 0;
}

/* Image — center */
.showcase__image-wrap {
  grid-area: image;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 600px;
}

.showcase__img {
  max-height: 82vh;
  width: auto;
  object-fit: contain;
  transform-origin: center center;
  will-change: transform, opacity, filter;
  filter: drop-shadow(0 20px 60px rgba(26, 22, 20, 0.12));
}

/* Details panel — right */
.showcase__details {
  grid-area: details;
  padding-left: 0.5rem;
}

.showcase__details-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 0.875rem;
}

.showcase__details-text {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.65;
  max-width: 220px;
}

/* Progress dots — far right */
.showcase__dots {
  grid-area: dots;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.showcase__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 22, 20, 0.35);
  background: transparent;
  transition: background 300ms ease, border-color 300ms ease, transform 300ms var(--ease-out);
}

.showcase__dot--active {
  background: var(--black);
  border-color: var(--black);
  transform: scale(1.35);
}

.showcase__dot:hover:not(.showcase__dot--active) {
  border-color: var(--black);
  transform: scale(1.15);
}

/* Counter */
.showcase__counter {
  position: absolute;
  top: calc(var(--nav-h) + 1.5rem);
  right: 4rem;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  opacity: 0.4;
  z-index: 2;
}

/* Scroll hint */
.showcase__hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.35;
  transition: opacity 500ms ease;
  z-index: 2;
  white-space: nowrap;
  animation: bounce 2.4s ease-in-out infinite;
}

.showcase__hint--hidden {
  opacity: 0 !important;
  pointer-events: none;
}

/* ── Image & Text Animation Keyframes ── */
@keyframes imgOut {
  from {
    transform: rotateY(0deg) scaleX(1);
    opacity: 1;
  }

  to {
    transform: rotateY(90deg) scaleX(0.08);
    opacity: 0;
  }
}

@keyframes imgIn {
  from {
    transform: rotateY(-90deg) scaleX(0.08);
    opacity: 0;
  }

  to {
    transform: rotateY(0deg) scaleX(1);
    opacity: 1;
  }
}

@keyframes textOut {
  from {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
  }

  to {
    opacity: 0;
    transform: scale(0.93);
    filter: blur(5px);
  }
}

@keyframes textIn {
  from {
    opacity: 0;
    transform: scale(0.93);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
  }
}

.showcase__img {
  will-change: transform, opacity;
}

.showcase__img--out {
  animation: imgOut 220ms ease-in forwards;
}

.showcase__img--in {
  animation: imgIn 280ms var(--ease-out) forwards;
}

.showcase__text--out {
  animation: textOut 200ms ease-in forwards;
}

.showcase__text--in {
  animation: textIn 400ms var(--ease-out) forwards;
}

/* ── CTA abaixo do showcase ── */
.showcase-cta {
  background: var(--bg);
  padding-block: 5rem;
  text-align: center;
}

/* ── 7. Produtos & Serviços ── */
.produtos {
  padding-block: 8rem;
  background: var(--white);
}

.produtos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── 8. Cards (shared) ── */
.card {
  padding: 2.75rem 2.25rem;
  background: var(--bg);
  border-radius: 4px;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}

.card--light {
  background: var(--white);
  border: 1px solid rgba(26, 22, 20, 0.07);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 22, 20, 0.08);
}

.card__icon {
  color: var(--red);
  margin-bottom: 1.5rem;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.card__body {
  font-size: 0.875rem;
  line-height: 1.75;
  opacity: 0.65;
}

/* ── 9. Diferenciais ── */
.diferenciais {
  padding-block: 8rem;
  background: var(--bg);
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── 10. Nossa História ── */
.historia {
  position: relative;
  padding-block: 9rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-dark) 100%);
  overflow: hidden;
}

.historia::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(26, 22, 20, 0.035) 39px, rgba(26, 22, 20, 0.035) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(26, 22, 20, 0.035) 39px, rgba(26, 22, 20, 0.035) 40px);
  pointer-events: none;
}

.historia__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: start;
}

.historia__badge {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 600;
  opacity: 0.1;
  writing-mode: vertical-rl;
  line-height: 1;
  color: var(--black);
  user-select: none;
}

.historia__content .section-title {
  margin-block: 1rem 2rem;
  text-align: left;
}

.historia__content p {
  font-size: 1rem;
  line-height: 1.85;
  opacity: 0.75;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

/* ── 11. CTA Final ── */
.cta-final {
  padding-block: 10rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.cta-final__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  max-width: 700px;
}

.cta-final__headline em {
  font-style: italic;
  color: var(--red);
}

.cta-final__sub {
  font-size: 1rem;
  opacity: 0.55;
  letter-spacing: 0.02em;
}

.cta-final .btn--primary {
  background: var(--red);
  border-color: var(--red);
  font-size: 0.875rem;
  padding: 1.1rem 3rem;
}

.cta-final .btn--primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.cta-final__address {
  font-size: 0.8rem;
  opacity: 0.35;
  font-style: normal;
  letter-spacing: 0.02em;
}

/* ── 12. Footer ── */
.footer {
  background: #110F0D;
  color: var(--white);
  padding-block: 2.5rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  opacity: 0.35;
  letter-spacing: 0.02em;
}

.footer__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer__link {
  font-size: 0.78rem;
  opacity: 0.5;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: opacity 200ms ease;
  letter-spacing: 0.02em;
}

.footer__link:hover {
  opacity: 1;
}

/* ── 13. Scroll-in animations ── */
.anim-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.anim-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 14. Responsive ── */
@media (max-width: 1024px) {
  .showcase__layout {
    grid-template-columns: 1fr 48% 52px;
    grid-template-areas:
      "info  image  dots"
      "details image dots";
    align-content: center;
    padding-inline: 2rem 0.5rem;
  }

  .showcase__details {
    grid-row: 2;
    grid-column: 1;
    grid-area: unset;
    padding-left: 0;
    padding-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__inner {
    padding-inline: 1.25rem;
  }

  .nav__logo {
    display: none;
  }

  .nav--scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: transparent;
  }

  .hero__inner {
    padding-inline: 1.25rem;
  }

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

  .showcase__layout {
    grid-template-columns: 1fr;
    grid-template-rows: 62vh auto;
    grid-template-areas:
      "image"
      "info";
    padding-inline: 1.25rem;
    padding-top: var(--nav-h);
    align-items: start;
    gap: 1rem 0;
    overflow: hidden;
  }

  .showcase__image-wrap {
    height: 62vh;
    perspective: 400px;
  }

  .showcase__img {
    max-height: 60vh;
    filter: drop-shadow(0 10px 30px rgba(26, 22, 20, 0.1));
  }

  .showcase__details {
    display: none;
  }

  .showcase__dots {
    flex-direction: row;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    grid-area: unset;
    background: rgba(255, 252, 248, 0.7);
    backdrop-filter: blur(8px);
    padding: 0.5rem 0.875rem;
    border-radius: 20px;
    gap: 8px;
  }

  .showcase__progress-bar {
    display: none;
  }

  .showcase__counter {
    top: calc(var(--nav-h) + 1rem);
    right: 1.25rem;
  }

  .showcase__hint {
    bottom: 3.5rem;
  }

  .produtos__grid,
  .diferenciais__grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .historia__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .historia__badge {
    writing-mode: horizontal-tb;
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }

  .container {
    padding-inline: 1.25rem;
  }

  .showcase-cta {
    padding-block: 3rem;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .showcase__name {
    font-size: 1.5rem;
  }

}

/* ── Depoimentos ── */
.depoimentos {
  padding-block: 8rem;
  background: var(--bg);
}

.depoimentos__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.depoimento-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border-radius: 6px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(26, 22, 20, 0.07);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  text-decoration: none;
  color: var(--black);
}

.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26, 22, 20, 0.13);
}

.depoimento-card__header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.depoimento-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.depoimento-card__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.depoimento-card__stars {
  color: #FBBC04;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-top: 0.1rem;
}

.depoimento-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
  flex: 1;
}

.depoimento-card__footer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  opacity: 0.45;
  letter-spacing: 0.04em;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(26, 22, 20, 0.07);
}

@media (max-width: 768px) {
  .depoimentos {
    padding-block: 5rem;
  }

  .depoimentos__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-inline: 1.25rem;
    padding-bottom: 1rem;
    margin-inline: -1.25rem;
    scrollbar-width: none;
  }

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

  .depoimento-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .depoimentos {
    padding-block: 4rem;
  }

  .depoimento-card {
    flex: 0 0 88vw;
    padding: 1rem;
  }
}

/* ── FAQ ── */
.faq {
  padding-block: 8rem;
  background: var(--white);
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid rgba(26, 22, 20, 0.1);
}

.faq__item:first-of-type {
  border-top: 1px solid rgba(26, 22, 20, 0.1);
}

.faq__question {
  list-style: none;
  padding: 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 240ms ease;
  line-height: 1;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.75;
  opacity: 0.65;
  max-width: 640px;
}

/* ── Floating WhatsApp ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 240ms ease, box-shadow 240ms ease;
  color: #fff;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ── Maps ── */
.cta-final__map {
  width: 100%;
  max-width: 580px;
  margin-top: 2.5rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(26, 22, 20, 0.1);
}

.cta-final__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

/* Mobile: animações sem blur (GPU-friendly) */
@media (max-width: 768px) {
  @keyframes textOut {
    from { opacity: 1; transform: scale(1); }
    to   { opacity: 0; transform: scale(0.97); }
  }

  @keyframes textIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
  }

  .showcase__text--out { animation-duration: 160ms; }
  .showcase__text--in  { animation-duration: 300ms; }
}