/* ═══════════════════════════════════════════
   CABELO ENCANTADO — CSS
   Paleta: #E7A7B8 · #F5D6DE · #E9DDD4
           #D4AF62 · #F8F4EF · #7A4E57
   Fontes: Playfair Display · Poppins
═══════════════════════════════════════════ */

/* === VARIABLES === */
:root {
  --rosa:       #E7A7B8;
  --blush:      #F5D6DE;
  --nude:       #E9DDD4;
  --dourado:    #D4AF62;
  --off-white:  #F8F4EF;
  --texto:      #7A4E57;
  --card:       #FFF9F7;
  --texto-soft: #9E7080;

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Poppins', system-ui, sans-serif;

  --container:  1200px;
  --radius:     20px;
  --radius-sm:  12px;
  --shadow:     0 8px 40px rgba(122, 78, 87, 0.10);
  --shadow-sm:  0 4px 20px rgba(122, 78, 87, 0.08);

  --transition: 0.3s ease;
}

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

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

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

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

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

.sobre-foto-principal img,
.sobre-foto-secundaria img,
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === LAYOUT === */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

section { padding-block: 100px; }

/* === TYPOGRAPHY === */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1rem;
}

.section-tag.light { color: var(--blush); }

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--texto);
  margin-bottom: 1.5rem;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--texto-soft);
  max-width: 540px;
  margin-inline: auto;
}

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: var(--rosa);
  color: #fff;
  box-shadow: 0 4px 20px rgba(231, 167, 184, 0.4);
}

.btn-primary:hover {
  background: var(--texto);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122, 78, 87, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(248, 244, 239, 0.5);
}

.btn-ghost:hover {
  background: rgba(248, 244, 239, 0.1);
  border-color: var(--off-white);
}

.btn-gold {
  background: var(--dourado);
  color: var(--off-white);
  box-shadow: 0 4px 20px rgba(212, 175, 98, 0.4);
}

.btn-gold:hover {
  background: var(--texto);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122, 78, 87, 0.25);
}

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

.btn-outline:hover {
  background: var(--rosa);
  color: #fff;
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--rosa);
  color: #fff;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  box-shadow: 0 2px 12px rgba(231, 167, 184, 0.3);
}

.btn-nav:hover {
  background: var(--texto);
  transform: translateY(-1px);
}

.btn-footer-cta {
  background: var(--rosa);
  color: #fff;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  margin-top: 1rem;
}

.btn-footer-cta:hover {
  background: var(--dourado);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(248, 244, 239, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.header.scrolled {
  padding: 0.85rem 0;
}

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

.logo-img {
  height: 60px;
  width: auto;
  transition: height var(--transition);
}

.header.scrolled .logo-img { height: 52px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--texto);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

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

.nav-link:hover { color: var(--dourado); }
.nav-link:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--texto);
  transition: all var(--transition);
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../imagens/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(60, 20, 35, 0.10) 0%,
      rgba(60, 20, 35, 0.35) 100%
    ),
    linear-gradient(
      to right,
      rgba(60, 20, 35, 0.35) 0%,
      rgba(60, 20, 35, 0.05) 60%,
      transparent 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 160px 80px;
  max-width: 620px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.25rem;
}

/* === SELO INAUGURAÇÃO (pré-abertura) === */

/* Selo redondo — carimbo de destaque à direita do hero (desktop ≥ 1025px) */
.hero-selo {
  position: absolute;
  top: 48%;
  right: 5%;
  z-index: 2;
  transform: translateY(-50%);
  opacity: 0;
  animation: seloAppear 0.9s ease 0.4s forwards;
}

.hero-selo-badge {
  position: relative;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--off-white);
  background: radial-gradient(circle at 32% 26%, #eecb7d 0%, var(--dourado) 44%, #b7893f 100%);
  box-shadow:
    0 22px 60px rgba(122, 78, 87, 0.45),
    0 0 0 14px rgba(212, 175, 98, 0.20);
  transform: rotate(-8deg);
  animation:
    seloFloat 5s ease-in-out infinite,
    seloPulse 2.6s ease-in-out infinite;
}

.hero-selo-badge::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1.5px solid rgba(248, 244, 239, 0.65);
  border-radius: 50%;
  pointer-events: none;
}

.hero-selo .selo-star {
  color: var(--blush);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.hero-selo .selo-l1 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-selo .selo-l2 {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  margin: 0.2rem 0 0.7rem;
}

.hero-selo .selo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.88);
  padding-top: 0.6rem;
  border-top: 1px solid rgba(248, 244, 239, 0.45);
}

@keyframes seloAppear { to { opacity: 1; } }

@keyframes seloFloat {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-6deg) translateY(-11px); }
}

@keyframes seloPulse {
  0%, 100% {
    box-shadow:
      0 22px 60px rgba(122, 78, 87, 0.45),
      0 0 0 6px rgba(212, 175, 98, 0.30),
      0 0 0 14px rgba(212, 175, 98, 0.12);
  }
  50% {
    box-shadow:
      0 22px 60px rgba(122, 78, 87, 0.45),
      0 0 0 12px rgba(212, 175, 98, 0.28),
      0 0 0 26px rgba(212, 175, 98, 0);
  }
}

/* Pílula — mesma mensagem no fluxo (telas ≤ 1024px, onde o selo redondo some) */
.hero-inauguracao-pill {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.35rem;
  margin-bottom: 1.6rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--dourado) 0%, #c39a4c 100%);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 26px rgba(212, 175, 98, 0.42);
}

.hero-inauguracao-pill .selo-spark { color: var(--blush); }

.hero-pre-nota {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1rem;
  color: var(--blush);
  line-height: 1.6;
  margin-top: -1.25rem;
  margin-bottom: 2.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-selo { animation: seloAppear 0.6s ease forwards; }
  .hero-selo-badge { animation: none; }
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--blush);
  display: block;
}

.hero-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(248, 244, 239, 0.9);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-dot {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--dourado), transparent);
  margin-inline: auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* === SOBRE === */
.sobre { background: var(--off-white); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-visual {
  position: relative;
}

.sobre-foto-principal {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blush);
}

.sobre-foto-secundaria {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  border: 5px solid var(--off-white);
  overflow: hidden;
  background: var(--nude);
}

.sobre-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--dourado);
  color: var(--off-white);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(212, 175, 98, 0.4);
}

.badge-numero {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.badge-sep { font-size: 0.7rem; opacity: 0.8; }
.badge-texto { font-size: 0.75rem; }

.sobre-texto .section-title { margin-top: 0.5rem; }

.sobre-desc {
  color: var(--texto-soft);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.diferenciais {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.diferencial {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.diferencial-icon {
  color: var(--dourado);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.diferencial-texto {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.diferencial-texto strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--texto);
}

.diferencial-texto span {
  font-size: 0.85rem;
  color: var(--texto-soft);
}

/* === FOTO PLACEHOLDERS === */
.foto-ambiente-1 {
  background: linear-gradient(135deg, var(--nude) 0%, var(--blush) 60%, var(--rosa) 100%);
}

.foto-ambiente-2 {
  background: linear-gradient(135deg, var(--rosa) 0%, var(--dourado) 100%);
}

.foto-fachada {
  background: linear-gradient(160deg, #c8899e 0%, var(--rosa) 40%, var(--blush) 100%);
}

.foto-cadeiras {
  background: linear-gradient(135deg, var(--rosa) 0%, var(--nude) 100%);
}

.foto-recepcao {
  background: linear-gradient(135deg, var(--blush) 0%, var(--nude) 100%);
}

.foto-criativo {
  background: linear-gradient(135deg, var(--nude) 0%, var(--blush) 60%, #f0c8d0 100%);
}

.foto-esmaltacao {
  background: linear-gradient(135deg, var(--rosa) 0%, #c88099 50%, var(--nude) 100%);
}

/* === SERVIÇOS === */
.servicos { background: var(--card); }

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

.servico-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(231, 167, 184, 0.2);
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--rosa);
  background: var(--card);
}

.servico-icon {
  font-size: 2rem;
  color: var(--dourado);
  margin-bottom: 1.25rem;
  display: block;
}

.servico-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--texto);
  margin-bottom: 0.75rem;
}

.servico-card p {
  font-size: 0.88rem;
  color: var(--texto-soft);
  line-height: 1.75;
}

/* === GALERIA === */
.galeria { background: var(--off-white); }

.galeria-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.galeria-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform var(--transition);
}

.galeria-item:hover { transform: scale(1.02); }

.galeria-grande {
  grid-row: span 2;
  aspect-ratio: auto;
}

.galeria-cta {
  text-align: center;
}

.galeria-cta p {
  color: var(--texto-soft);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* === DEPOIMENTOS === */
.depoimentos { background: var(--blush); }

.depoimentos .section-tag { color: var(--texto-soft); }
.depoimentos .section-title { color: var(--texto); }

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

.depoimento-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.stars {
  color: var(--dourado);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.depoimento-card p {
  font-size: 0.92rem;
  color: var(--texto-soft);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.autor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--blush);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.autor-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.autor-info strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texto);
}

.autor-info span {
  font-size: 0.78rem;
  color: var(--texto-soft);
}

/* === CTA === */
.cta-section {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--texto) 0%, #5a2837 50%, #3d1a24 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
}

.cta-content h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.25;
  margin-bottom: 1rem;
}

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

.cta-content p {
  color: rgba(248, 244, 239, 0.7);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* === TRABALHE CONOSCO === */
.trabalhe-conosco { background: var(--off-white); }

.trabalhe-content {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.trabalhe-desc {
  font-size: 1rem;
  color: var(--texto-soft);
  line-height: 1.85;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.trabalhe-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === EMAIL LINK === */
.email-link {
  font-size: 0.9rem;
  color: var(--texto-soft);
  transition: color var(--transition);
  line-height: 1.6;
}

.email-link:hover { color: var(--dourado); }

.footer-email {
  display: block;
  font-size: 0.82rem;
  color: rgba(248, 244, 239, 0.55);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
  word-break: break-all;
}

.footer-email:hover { color: var(--rosa); }

/* === LOCALIZAÇÃO === */
.localizacao { background: var(--card); }

.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.localizacao-info .section-title { font-size: 2.2rem; }

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 0.2rem;
}

.info-item span {
  font-size: 0.9rem;
  color: var(--texto-soft);
  line-height: 1.6;
}

.mapa-wrapper {
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mapa-wrapper iframe {
  filter: saturate(0.7) hue-rotate(320deg);
}

/* === FOOTER === */
.footer {
  background: var(--texto);
  color: rgba(248, 244, 239, 0.8);
  padding-block: 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(248, 244, 239, 0.6);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-title);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(248, 244, 239, 0.1);
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--rosa);
  transform: translateY(-2px);
}

.social-links svg { width: 16px; height: 16px; fill: var(--off-white); }

.footer-nav h4,
.footer-servicos h4,
.footer-contato h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 1.25rem;
}

.footer-nav ul,
.footer-servicos ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--rosa); }

.footer-servicos li { font-size: 0.88rem; }

.footer-contato p {
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(248, 244, 239, 0.1);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(248, 244, 239, 0.4);
}

.footer-tagline {
  font-family: var(--font-title);
  font-style: italic;
  color: rgba(231, 167, 184, 0.5) !important;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  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.3s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* --- TABLET (≤ 1024px) --- */
@media (max-width: 1024px) {
  .container { width: min(var(--container), 100% - 2.5rem); }

  /* Selo redondo dá lugar à pílula no fluxo (evita sobrepor o texto) */
  .hero-selo { display: none; }
  .hero-inauguracao-pill { display: inline-flex; }

  .sobre-grid { gap: 3rem; }

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

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

/* --- MOBILE (≤ 768px) --- */
@media (max-width: 768px) {

  /* Espaçamento geral */
  section { padding-block: 60px; }
  .container { width: min(var(--container), 100% - 2rem); }

  /* === HEADER === */
  .header { padding: 0.9rem 0; }
  .header.scrolled { padding: 0.75rem 0; }
  .logo-img { height: 48px; }
  .header.scrolled .logo-img { height: 42px; }
  .btn-nav { display: none; }
  .menu-toggle { display: flex; z-index: 201; position: relative; }

  /* Nav overlay mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--off-white);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 200;
  }

  .nav-links.open { display: flex; }

  .nav-links.open .nav-link {
    color: var(--texto);
    font-size: 1.25rem;
    font-weight: 400;
  }

  .nav-links.open .nav-link::after { display: none; }

  /* Botão agendar dentro do menu mobile */
  .nav-links.open::after {
    content: 'Agendar pelo WhatsApp';
    display: inline-flex;
    margin-top: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    background: var(--rosa);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
  }

  /* === HERO === */
  .hero { min-height: 100svh; }

  .hero-bg { background-position: 70% center; }

  .hero-content {
    padding-block: 130px 80px;
    max-width: 100%;
  }

  .hero-pre-nota {
    font-size: 0.95rem;
    margin-top: -0.75rem;
    margin-bottom: 2rem;
  }

  .hero-tag { font-size: 0.7rem; }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero-text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-ghost { display: none; }
  .hero-scroll { display: none; }

  /* === SOBRE === */
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sobre-visual { order: -1; }

  .sobre-foto-principal { aspect-ratio: 4/3; }

  .sobre-foto-secundaria { display: none; }

  .sobre-badge {
    top: auto;
    bottom: -1rem;
    right: 1rem;
  }

  .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }

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

  /* === SERVIÇOS — carousel === */
  .servicos-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding-bottom: 0.5rem;
    padding-right: 16%;
  }
  .servicos-grid::-webkit-scrollbar { display: none; }
  .servico-card {
    flex: 0 0 84%;
    scroll-snap-align: start;
    padding: 2.25rem 1.75rem;
  }
  .servico-icon { font-size: 2rem; margin-bottom: 1rem; }
  .servico-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
  .servico-card p { font-size: 0.9rem; line-height: 1.7; }

  /* === GALERIA — carousel === */
  .galeria-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    padding-right: 12%;
    margin-bottom: 0;
  }
  .galeria-grid::-webkit-scrollbar { display: none; }
  .galeria-item,
  .galeria-grande {
    flex: 0 0 88%;
    aspect-ratio: 4/3;
    scroll-snap-align: start;
  }

  /* === DEPOIMENTOS — carousel === */
  .depoimentos-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding-bottom: 0.5rem;
    padding-right: 12%;
  }
  .depoimentos-grid::-webkit-scrollbar { display: none; }
  .depoimento-card {
    flex: 0 0 88%;
    scroll-snap-align: start;
    padding: 1.75rem 1.5rem;
  }
  .depoimento-card .stars { font-size: 1.1rem; letter-spacing: 0.15em; }

  /* === CTA === */
  .cta-section { padding-block: 80px; }

  .cta-content h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .cta-content p { font-size: 0.9rem; margin-bottom: 2rem; }

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

  /* === TRABALHE CONOSCO === */
  .trabalhe-actions { flex-direction: column; align-items: center; }
  .trabalhe-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* === LOCALIZAÇÃO === */
  .localizacao-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .localizacao-info .section-title { font-size: 1.8rem; }

  .mapa-wrapper { height: 260px; }

  .localizacao-info .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* === FOOTER === */
  .footer { padding-block: 50px 24px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: unset; }
  .footer-servicos { display: none; }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }

  /* === WHATSAPP === */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* === CAROUSEL DOTS === */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1.25rem;
  margin-bottom: 1.75rem;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nude);
  transition: all 0.35s ease;
  cursor: pointer;
}

.carousel-dot.active {
  width: 22px;
  border-radius: 3px;
  background: var(--dourado);
}

/* --- MOBILE PEQUENO (≤ 480px) --- */
@media (max-width: 480px) {
  section { padding-block: 50px; }

  .hero-content { padding-block: 110px 60px; }

  .hero-title { font-size: clamp(2rem, 11vw, 2.4rem); }

  .hero-text { display: none; }

  /* Carousels: ajuste de flex-basis em telas menores */
  .servico-card { flex: 0 0 90%; }
  .galeria-item,
  .galeria-grande { flex: 0 0 92%; aspect-ratio: 4/3; }
  .depoimento-card { flex: 0 0 92%; }

  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }

  .depoimento-card p { font-size: 0.88rem; }

  .footer-nav { display: none; }
}
