/* ============================================================
   LUMIÈRE BEAUTY — style.css
   Paleta: Branco #FFFFFF | Bege #F8F3EE | Dourado #C9A86A | Cinza #333333
   Tipografia: Cormorant Garamond (display) + Jost (corpo)
   ============================================================ */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --white:      #FFFFFF;
  --cream:      #F8F3EE;
  --cream-mid:  #EFE8DF;
  --gold:       #C9A86A;
  --gold-light: #dfc18e;
  --gold-dark:  #a88748;
  --dark:       #333333;
  --dark-soft:  #555555;
  --dark-light: #888888;
  --border:     rgba(201, 168, 106, 0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;

  --shadow-sm:  0 2px 12px rgba(51,51,51,0.07);
  --shadow-md:  0 8px 32px rgba(51,51,51,0.10);
  --shadow-lg:  0 20px 60px rgba(51,51,51,0.12);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --container:  1200px;
  --section-gap: 100px;
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}

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

.section-subtitle {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--dark-soft);
  max-width: 520px;
  margin-inline: auto;
}

.section-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.section-cta p {
  font-size: 0.95rem;
  color: var(--dark-soft);
  margin-bottom: 20px;
}

/* ─── BOTÕES ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 60px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 168, 106, 0.35);
}

.btn--gold:hover {
  background-color: var(--gold-dark);
  box-shadow: 0 6px 28px rgba(201, 168, 106, 0.5);
  transform: translateY(-2px);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

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

.btn--lg {
  padding: 16px 40px;
  font-size: 0.85rem;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.30s; }
.reveal--delay-3 { transition-delay: 0.45s; }

/* ─── HEADER ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 24px rgba(51,51,51,0.08);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 60px);
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.header.scrolled .header__logo {
  color: var(--dark);
}

.header__logo-icon {
  color: var(--gold);
  font-size: 1rem;
}

.header__logo em {
  font-style: italic;
  color: var(--gold);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.header__nav-link:hover {
  color: var(--gold);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header.scrolled .header__nav-link {
  color: var(--dark-soft);
}

.header.scrolled .header__nav-link:hover {
  color: var(--gold);
}

.header__cta {
  padding: 10px 24px;
  font-size: 0.75rem;
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.header.scrolled .header__menu-btn span {
  background: var(--dark);
}

.header__menu-btn.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header__menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.header__mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 24px 0 32px;
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--border);
}

.header__mobile-menu.open {
  display: flex;
}

.header__mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-link {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition-fast);
}

.mobile-link:hover { color: var(--gold); }

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__bg img,
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
  display: block;
}

.hero.loaded .hero__img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 22, 14, 0.55) 0%,
    rgba(30, 22, 14, 0.40) 50%,
    rgba(30, 22, 14, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 60px);
  max-width: 820px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.80);
  font-weight: 300;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ─── SOBRE NÓS ──────────────────────────────────────────── */
.sobre {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.sobre__visual {
  position: relative;
}

.sobre__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.sobre__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.sobre__img-wrap:hover .sobre__img {
  transform: scale(1.04);
}

.sobre__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.sobre__badge-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.sobre__badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

.sobre__content {
  padding-left: clamp(0px, 2vw, 24px);
}

.sobre__text {
  font-size: 1rem;
  color: var(--dark-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}

.sobre__stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sobre__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sobre__stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.sobre__stat span {
  font-size: 0.75rem;
  color: var(--dark-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── SERVIÇOS ───────────────────────────────────────────── */
.servicos {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.servico-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.servico-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  transform: translateY(-4px);
}

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.servico-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}

.servico-card__desc {
  font-size: 0.875rem;
  color: var(--dark-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.servico-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 60px;
  padding: 8px 18px;
  transition: all var(--transition-fast);
}

.servico-card__btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ─── GALERIA ────────────────────────────────────────────── */
.galeria {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.galeria__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-mid);
}

.galeria__item--tall {
  grid-row: span 2;
}

.galeria__item--wide {
  grid-column: span 2;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.galeria__hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,22,14,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.galeria__hover span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}

.galeria__item:hover img {
  transform: scale(1.06);
}

.galeria__item:hover .galeria__hover {
  opacity: 1;
}

/* ─── DIFERENCIAIS ───────────────────────────────────────── */
.diferenciais {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

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

.diferencial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.diferencial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.diferencial-card__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(201,168,106,0.12);
  line-height: 1;
  user-select: none;
}

.diferencial-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.diferencial-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}

.diferencial-card p {
  font-size: 0.9rem;
  color: var(--dark-soft);
  line-height: 1.7;
}

/* ─── DEPOIMENTOS ────────────────────────────────────────── */
.depoimentos {
  padding: var(--section-gap) 0;
  background: var(--white);
  overflow: hidden;
}

.depoimentos__track-wrap {
  position: relative;
  overflow: hidden;
  /* Garante que o track não vaze para fora */
  width: 100%;
}

.depoimentos__track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Sem overflow oculto aqui — o wrap já controla */
  will-change: transform;
}

.depoimento-card {
  /* Tamanho correto: 1/3 do container menos as gaps */
  min-width: calc((100%) / 3 - 16px);
  flex: 0 0 calc((100%) / 3 - 16px);
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.depoimento-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.depoimento-card__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--dark-soft);
  line-height: 1.7;
  flex: 1;
}

.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.depoimento-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.depoimento-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

.depoimento-card__author span {
  font-size: 0.75rem;
  color: var(--dark-light);
}

.depoimentos__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.depoimentos__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--dark-soft);
  transition: all var(--transition-fast);
  background: var(--white);
  line-height: 1;
}

.depoimentos__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.depoimentos__dots {
  display: flex;
  gap: 8px;
}

.depoimentos__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-mid);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.depoimentos__dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--dark);
  padding: 80px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner__text h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-banner__text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

/* ─── LOCALIZAÇÃO ────────────────────────────────────────── */
.localizacao {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.localizacao__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.localizacao__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.localizacao__map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

.localizacao__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.localizacao__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.localizacao__item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.localizacao__item strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 500;
}

.localizacao__item p {
  font-size: 0.95rem;
  color: var(--dark-soft);
  line-height: 1.6;
}

/* ─── RODAPÉ ─────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}

.footer__top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo span:first-child {
  color: var(--gold);
  font-size: 1rem;
}

.footer__logo em {
  font-style: italic;
  color: var(--gold);
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer__col h3 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}

.footer__col li a:hover {
  color: var(--gold);
}

.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__hours li:last-child {
  border-bottom: none;
}

.footer__bottom {
  padding: 24px 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ─── BOTÃO FLUTUANTE WHATSAPP ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: 60px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.4);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  overflow: hidden;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

.whatsapp-float__label {
  white-space: nowrap;
}

/* Pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25D366;
  animation: waPulse 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0; }
}

/* ─── RESPONSIVIDADE ─────────────────────────────────────── */

/* Tablet grande */
@media (max-width: 1100px) {
  .servicos__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .galeria__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* Tablet */
@media (max-width: 900px) {
  :root { --section-gap: 72px; }

  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__menu-btn { display: flex; }

  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre__badge {
    right: 16px;
    bottom: -16px;
  }

  .sobre__content {
    padding-left: 0;
  }

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

  .galeria__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .localizacao__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .depoimento-card {
    min-width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }

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

/* Mobile grande */
@media (max-width: 640px) {
  :root { --section-gap: 56px; }

  .servicos__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .galeria__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .galeria__item--tall,
  .galeria__item--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .diferenciais__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .depoimento-card {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .sobre__stats {
    gap: 20px;
  }

  .whatsapp-float__label {
    display: none;
  }

  .whatsapp-float {
    padding: 16px;
    border-radius: 50%;
  }
}

/* Mobile pequeno */
@media (max-width: 400px) {
  .galeria__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__bg,
  .hero__bg img,
  .hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ─── DK WEB CODE ───────────────────────────────────────────── */
.dk a {
  color: aqua;
  text-decoration: none;
  transition: text-decoration var(--transition-fast);
}

.dk a:hover {
  text-decoration: underline;
}
/* ─── PREFERÊNCIA DE MOVIMENTO REDUZIDO ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

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