/* =========================================================
   Letícia Martins — Designer de Unhas | style.css
   ---------------------------------------------------------
   Estrutura:
   1. Design Tokens (:root)
   2. Reset & Base
   3. Utilitários (Container, Section, Buttons, Badge)
   4. Header + Hamburger
   5. Hero
   6. Serviços (cards)
   7. Sobre
   8. Banner Atendimento
   9. Inspirações
  10. Agendar CTA
  11. Footer
  12. WhatsApp Float
  13. Scroll Reveal
  14. Responsividade (1024px → 768px → 480px)
   ========================================================= */

/* ─── Design Tokens ──────────────────────────────────────────
   Todas as cores, fontes, tamanhos de borda e sombras do site
   são definidas aqui como variáveis CSS.
   Para mudar a paleta de cores do site, edite apenas este bloco.
   Cores primárias: tom rosê/terracota (#c48b78 e variantes).
─────────────────────────────────────────────────────────── */
:root {
  --color-bg: #fdf9f7;
  --color-bg-alt: #fff8f4;
  --color-primary: #c48b78;
  /* Rosa terracota principal */
  --color-primary-light: #e8b4a2;
  /* Versão clara para hovers */
  --color-primary-dark: #a8705a;
  /* Versão escura para contraste */
  --color-gold: #c9a96e;
  /* Dourado — usado em detalhes */
  --color-text: #2d2421;
  /* Texto escuro quase preto */
  --color-text-muted: #7a6058;
  /* Texto secundário suave */
  --color-white: #ffffff;
  --color-card-bg: #fffaf8;
  --color-border: rgba(196, 139, 120, 0.2);
  --color-shadow: rgba(168, 112, 90, 0.15);

  --font-heading: 'Playfair Display', serif;
  /* Títulos elegantes */
  --font-body: 'Outfit', sans-serif;
  /* Corpo de texto moderno */

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;
  /* Usado em botões com pill shape */

  --shadow-soft: 0 4px 24px var(--color-shadow);
  --shadow-card: 0 8px 40px rgba(168, 112, 90, 0.12);
  --shadow-float: 0 12px 48px rgba(168, 112, 90, 0.3);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ─── Container ──────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Section utilities ──────────────────────────────────── */
.section {
  padding: 96px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(196, 139, 120, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 139, 120, 0.5);
}

.btn--ghost {
  background: rgba(196, 139, 120, 0.08);
  color: var(--color-primary-dark);
  border: 2px solid var(--color-border);
}

.btn--ghost:hover {
  background: rgba(196, 139, 120, 0.15);
  transform: translateY(-2px);
}

.btn--card {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 10px 22px;
  font-size: 0.88rem;
  margin-top: 8px;
}

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

.btn--white {
  background: var(--color-white);
  color: var(--color-primary-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
  background: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* ─── Badge ──────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: rgba(196, 139, 120, 0.12);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

/* ─── HEADER ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(253, 249, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.logo__title {
  font-size: 0.7rem;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--color-primary);
  background: rgba(196, 139, 120, 0.08);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white) !important;
  padding: 9px 22px;
  box-shadow: 0 4px 16px rgba(196, 139, 120, 0.35);
}

.nav__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196, 139, 120, 0.45);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

/* ─── Hamburger ──────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 4px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background: linear-gradient(140deg, #fdf9f7 0%, #f9ece7 55%, #f5e0d8 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 139, 120, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__overlay {
  display: none;
}

.container.hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  width: 100%;
}

.hero__content {
  flex: 1;
  max-width: 560px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 20px;
}

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

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero__cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero__trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__image-col {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  width: 440px;
  max-width: 100%;
}

.hero__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero__card-float {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  animation: floatCard 3s ease-in-out infinite;
}

.hero__card-icon {
  font-size: 1.8rem;
}

.hero__card-float strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}

@keyframes floatCard {

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

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

/* ─── SERVIÇOS ───────────────────────────────────────────── */
.servicos {
  background: var(--color-bg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 139, 120, 0.04), transparent);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(168, 112, 90, 0.2);
  border-color: rgba(196, 139, 120, 0.4);
}

.service-card--featured {
  background: linear-gradient(135deg, #fff4f0, #ffeee8);
  border-color: rgba(196, 139, 120, 0.45);
}

.service-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-card__icon-wrap {
  font-size: 2.4rem;
  line-height: 1;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

.service-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-tag {
  background: rgba(196, 139, 120, 0.1);
  color: var(--color-primary-dark);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 500;
}

.price-tag {
  background: rgba(201, 169, 110, 0.15);
  color: #8a6a30;
}

.service-card__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(196, 139, 120, 0.07);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.service-card__price strong {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.inspiracoes__img {
  width: 100%;
  max-width: 520px;
  height: 320px;
  object-fit: cover;
  object-position: center 70%;
  border-radius: var(--radius-lg);
  margin: 0 auto 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  display: block;
}



/* ─── SOBRE ──────────────────────────────────────────────── */
.sobre {
  background: var(--color-bg-alt);
}

.sobre__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.sobre__image-col {
  flex: 0 0 auto;
}

.sobre__img-frame {
  width: 320px;
  height: 370px;
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-float);
  position: relative;
  border: 4px solid rgba(196, 139, 120, 0.35);
}

.sobre__img-frame::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(196, 139, 120, 0.3);
  animation: spinSlow 20s linear infinite;
  pointer-events: none;
}

.sobre__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.sobre__text {
  flex: 1;
}

.sobre__title {
  text-align: left;
}

.sobre__text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.sobre__text p strong {
  color: var(--color-primary-dark);
}

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

.stat {
  text-align: center;
}

.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat__label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ─── BANNER ATENDIMENTO A DOMICÍLIO ─────────────────────── */
.banner-visita {
  background: linear-gradient(135deg, #fff4f0, #fdeee8);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 36px 0;
}

.banner-visita__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.banner-visita__icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.banner-visita__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 200px;
}

.banner-visita__text strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.banner-visita__text span {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.sobre__highlight {
  background: rgba(196, 139, 120, 0.1);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.sobre__highlight strong {
  color: var(--color-primary-dark);
}

/* ─── INSPIRAÇÕES ────────────────────────────────────────────
   Seção com fundo gradiente rosê e imagem de unhas centralizada.
   object-position controla o enquadramento da foto.
   Se a imagem ficar cortando as unhas, ajuste o valor de
   object-position (ex: center 60%, center 80%, center bottom).
─────────────────────────────────────────────────────────── */

.inspiracoes {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.inspiracoes::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.inspiracoes::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
}

.inspiracoes__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.inspiracoes__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.inspiracoes__inner .section-title {
  color: var(--color-white);
}

.inspiracoes__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ─── AGENDAR CTA ────────────────────────────────────────── */
.agendar {
  background: var(--color-bg);
  text-align: center;
}

.agendar__inner {
  max-width: 680px;
  margin: 0 auto;
}

.agendar__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}

.agendar__desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

.agendar__info {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--color-text);
  padding: 40px 0;
}

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

.footer .logo__name {
  color: var(--color-white);
  font-size: 1rem;
}

.footer .logo__title {
  color: var(--color-primary-light);
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 14px 22px 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(120px);
  opacity: 0;
  transition: var(--transition);
}

.whatsapp-float.visible {
  transform: translateY(0);
  opacity: 1;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ─── Scroll Reveal Animations ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ─── RESPONSIVIDADE ─────────────────────────────────────────
   Breakpoints:
   → max-width: 1024px  (tablets e laptops pequenos)
   → max-width:  768px  (mobile — menu hamburger ativo aqui)
   → max-width:  480px  (mobile pequeno)

   A seção hero usa flexbox e empilha em coluna nos breakpoints.
   O menu mobile (.nav) usa position: fixed e translateY para animar.
─────────────────────────────────────────────────────────── */

/* Garante que nenhum elemento cause scroll horizontal */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .container.hero__inner {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 64px;
    gap: 48px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__cta-group {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__image-wrapper {
    width: 340px;
  }

  .sobre__inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .sobre__title {
    text-align: center;
  }

  .sobre__stats {
    justify-content: center;
  }

  .sobre__text .btn--primary {
    margin: 0 auto;
    display: flex;
    width: fit-content;
  }

  .sobre__highlight {
    text-align: left;
  }
}

/* Mobile — 768px */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  /* Header */
  .header__inner {
    padding: 0 16px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(253, 249, 247, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px 32px;
    gap: 8px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 998;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    font-size: 1.05rem;
    padding: 12px 16px;
    border-radius: var(--radius-md);
  }

  .nav__link--cta {
    text-align: center;
    margin-top: 8px;
  }

  /* Hero */
  .container.hero__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 90px 16px 56px;
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
  }

  .hero__image-col {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero__image-wrapper {
    width: 260px;
  }

  .hero__card-float {
    left: auto;
    right: 0;
    bottom: -16px;
    transform: none;
    white-space: normal;
    padding: 10px 14px;
    gap: 8px;
    max-width: 90%;
  }

  .hero__cta-group {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero__cta-group .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .hero__trust {
    justify-content: center;
    gap: 12px;
  }

  /* Banner visita */
  .banner-visita__inner {
    flex-direction: column;
    text-align: center;
    padding: 0 16px;
  }

  .banner-visita__text {
    align-items: center;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  /* Sobre */
  .sobre__inner {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }

  .sobre__img-frame {
    width: 240px;
    height: 280px;
  }

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

  .sobre__highlight {
    text-align: left;
  }

  /* Inspirações */
  .inspiracoes__img {
    height: 260px;
  }

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

  /* WhatsApp float — icon only */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float__label {
    display: none;
  }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__trust {
    font-size: 0.78rem;
    gap: 8px;
  }

  .hero__image-wrapper {
    width: 220px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .banner-visita__text strong {
    font-size: 1rem;
  }

  .sobre__img-frame {
    width: 200px;
    height: 240px;
  }

  .sobre__stats {
    gap: 12px;
  }

  .stat__num {
    font-size: 1.4rem;
  }

  .agendar__info {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .agendar__title {
    font-size: 1.75rem;
  }

  .inspiracoes__img {
    height: 220px;
    object-position: center 70%;
    border-radius: var(--radius-md);
  }

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

/* ─── DEPOIMENTOS ────────────────────────────────────────────
   Grid de 3 cards com depoimentos de clientes.
   Cada card tem estrelas, texto, avatar e nome.
─────────────────────────────────────────────────────────── */
.depoimentos {
  background: var(--color-bg-alt);
}

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

.depo-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.depo-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 8rem;
  color: rgba(196, 139, 120, 0.08);
  line-height: 1;
  pointer-events: none;
}

.depo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(168, 112, 90, 0.18);
  border-color: rgba(196, 139, 120, 0.4);
}

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

.depo-card__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.depo-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.depo-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--color-primary-light);
  flex-shrink: 0;
}

.depo-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.depo-card__info strong {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 600;
}

.depo-card__info span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}