/* ============================================================
   NA LOJINHA — STYLE.CSS
   Paleta: Rosa #D41472 + Teal #3DBDB0 + Branco
   Font: Poppins
   ============================================================ */

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

:root {
  --rosa:        #D41472;
  --rosa-escuro: #AA0E5B;
  --rosa-claro:  #FCE4EF;
  --rosa-fundo:  #FFF5FA;
  --teal:        #3DBDB0;
  --teal-escuro: #2E9C91;
  --teal-claro:  #E0F5F3;
  --branco:      #FFFFFF;
  --texto:       #1A1A1A;
  --texto-sec:   #6B7280;
  --cinza-claro: #F9FAFB;
  --borda:       #F0E0EB;
  --sombra:      0 4px 24px rgba(212, 20, 114, 0.12);
  --sombra-hover:0 8px 40px rgba(212, 20, 114, 0.25);
  --sombra-teal: 0 4px 24px rgba(61, 189, 176, 0.2);
  --radius:      12px;
  --radius-lg:   20px;
  --transicao:   0.3s ease;
  --font:        'Poppins', sans-serif;
  --header-height: 72px;
  --container:   1200px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--texto);
  background: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul  { list-style: none; }
a   { text-decoration: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION ===== */
.section { padding: 88px 0; }

/* ===== SECTION TAG ===== */
.section-tag {
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
  background: var(--rosa-claro);
  color: var(--rosa);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 18px;
  border-radius: 50px;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1rem;
  color: var(--texto-sec);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transicao);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-rosa {
  background: var(--rosa);
  color: var(--branco);
  border-color: var(--rosa);
}

.btn-rosa:hover {
  background: var(--rosa-escuro);
  border-color: var(--rosa-escuro);
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}

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

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

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-teal {
  background: var(--teal);
  color: var(--branco);
  border-color: var(--teal);
}

.btn-teal:hover {
  background: var(--teal-escuro);
  border-color: var(--teal-escuro);
  transform: translateY(-2px);
  box-shadow: var(--sombra-teal);
}

.btn-branco {
  background: var(--branco);
  color: var(--rosa);
  border-color: var(--branco);
}

.btn-branco:hover {
  background: var(--rosa-claro);
  border-color: var(--rosa-claro);
  transform: translateY(-2px);
}

.btn-branco-outline {
  background: rgba(255,255,255,0.15);
  color: var(--branco);
  border-color: rgba(255,255,255,0.6);
}

.btn-branco-outline:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--branco);
  transform: translateY(-2px);
}

/* ===== NAV VITRINE BADGE ===== */
.nav-vitrine-btn {
  background: var(--rosa) !important;
  color: var(--branco) !important;
  padding: 5px 16px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}

.nav-vitrine-btn::after { display: none !important; }

.nav-vitrine-btn:hover {
  background: var(--rosa-escuro) !important;
  color: var(--branco) !important;
  opacity: 1;
}

/* Mobile nav vitrine */
.nav-vitrine-mobile {
  color: var(--rosa) !important;
  font-weight: 700 !important;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: #111111;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transicao);
}

header {
  transition: box-shadow var(--transicao), top 0.35s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(212, 20, 114, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-texto {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rosa);
  letter-spacing: -0.5px;
}

/* ===== DESKTOP NAV ===== */
.desktop-nav ul {
  display: flex;
  gap: 28px;
}

.desktop-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transicao);
  position: relative;
  padding-bottom: 2px;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rosa);
  border-radius: 2px;
  transition: width var(--transicao);
}

.desktop-nav a:hover,
.desktop-nav a.ativo {
  color: var(--rosa);
}

.desktop-nav a:hover::after,
.desktop-nav a.ativo::after {
  width: 100%;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: all var(--transicao);
}

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

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease, top 0.35s ease;
  z-index: 999;
}

.mobile-nav.active {
  max-height: 520px;
  padding: 8px 0 20px;
}

.mobile-nav ul { padding: 0 24px; }

.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transicao);
}

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

/* ===== HERO ===== */
.hero {
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 88px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(255,240,250,0.82) 50%, rgba(252,228,239,0.78) 100%),
    url('images/bg-hero.jpg') center / cover no-repeat;
  background-attachment: fixed, fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(212,20,114,0.12) 0%, transparent 70%);
}

.shape-2 {
  width: 220px;
  height: 220px;
  bottom: 80px;
  left: -60px;
  background: radial-gradient(circle, rgba(61,189,176,0.12) 0%, transparent 70%);
}

.shape-3 {
  width: 160px;
  height: 160px;
  top: 35%;
  right: 22%;
  background: radial-gradient(circle, rgba(212,20,114,0.07) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 800;
  color: var(--rosa);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -1.5px;
}

.hero h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 500;
  color: var(--texto);
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 1rem;
  color: var(--texto-sec);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-info span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--texto-sec);
  font-weight: 500;
}

.hero-info i { color: var(--rosa); font-size: 0.9rem; }

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--sombra);
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.hero-card:hover {
  transform: translateX(8px);
  box-shadow: var(--sombra-hover);
}

.hero-card-2 { margin-left: 28px; }
.hero-card-3 { margin-left: 56px; }

.hero-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--rosa-claro);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-icon i {
  font-size: 1.3rem;
  color: var(--rosa);
}

.hero-card-icon-teal {
  background: var(--teal-claro);
}

.hero-card-icon-teal i { color: var(--teal); }

.hero-card span {
  font-weight: 600;
  color: var(--texto);
  font-size: 0.97rem;
}

/* ===== SOBRE ===== */
.sobre-section {
  background:
    linear-gradient(rgba(255,255,255,0.93), rgba(255,255,255,0.93)),
    url('images/bg-sobre.jpg') center / cover no-repeat;
  background-attachment: scroll, fixed;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.mvv-card {
  background: var(--cinza-claro);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--borda);
  transition: transform var(--transicao), box-shadow var(--transicao);
}

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

.mvv-destaque {
  background: var(--rosa);
  border-color: var(--rosa);
}

.mvv-icon {
  width: 56px;
  height: 56px;
  background: var(--rosa-claro);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mvv-icon i { font-size: 1.4rem; color: var(--rosa); }

.mvv-destaque .mvv-icon {
  background: rgba(255,255,255,0.22);
}

.mvv-destaque .mvv-icon i { color: var(--branco); }

.mvv-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 12px;
}

.mvv-destaque h3 { color: var(--branco); }

.mvv-card p {
  font-size: 0.93rem;
  color: var(--texto-sec);
  line-height: 1.75;
}

.mvv-destaque p { color: rgba(255,255,255,0.88); }

.valores-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.valores-list li {
  font-size: 0.9rem;
  color: var(--texto-sec);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.valores-list li::before {
  content: '✓';
  color: var(--rosa);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.mvv-destaque .valores-list li { color: rgba(255,255,255,0.88); }
.mvv-destaque .valores-list li::before { color: var(--branco); }

/* Historia block */
.historia-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  background: var(--rosa-fundo);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  border: 1px solid var(--rosa-claro);
}

.historia-texto h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 16px;
}

.historia-texto p {
  color: var(--texto-sec);
  line-height: 1.75;
  margin-bottom: 10px;
  font-size: 0.97rem;
}

.historia-numeros {
  display: flex;
  gap: 36px;
  flex-shrink: 0;
}

.numero-card { text-align: center; }

.numero {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--rosa);
  line-height: 1.1;
  margin-bottom: 4px;
}

.numero-label {
  font-size: 0.78rem;
  color: var(--texto-sec);
  font-weight: 500;
  white-space: nowrap;
}

/* ===== PRODUTOS ===== */
.produtos-section { background: var(--rosa-fundo); }

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

.produto-card {
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  border: none;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.produto-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.15) 100%);
  transition: background var(--transicao);
}

.produto-card:hover .produto-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.2) 100%);
}

.produto-card-content {
  position: relative;
  z-index: 1;
  padding: 28px 20px;
  width: 100%;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.produto-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background var(--transicao);
  border: 1px solid rgba(255,255,255,0.25);
}

.produto-icon i {
  font-size: 1.5rem;
  color: #fff;
  transition: color var(--transicao);
}

.produto-card:hover .produto-icon {
  background: var(--rosa);
  border-color: var(--rosa);
}

.produto-card:hover .produto-icon i { color: #fff; }

.produto-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.produto-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

/* ===== PERSONALIZAÇÃO ===== */
.personalizacao-section {
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    url('images/bg-personalizacao.jpg') center / cover no-repeat;
  background-attachment: scroll, fixed;
}

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

.step-card {
  text-align: center;
  padding: 44px 24px 36px;
  background: var(--cinza-claro);
  border-radius: var(--radius-lg);
  border: 1px solid var(--borda);
  position: relative;
  transition: transform var(--transicao), box-shadow var(--transicao);
}

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

.step-card-destaque {
  background: var(--rosa-fundo);
  border-color: var(--rosa-claro);
}

.step-numero {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--rosa-claro);
  line-height: 1;
  font-family: var(--font);
}

.step-icon {
  width: 68px;
  height: 68px;
  background: var(--rosa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.step-icon i { font-size: 1.5rem; color: var(--branco); }

.step-icon-teal { background: var(--teal); }

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--texto-sec);
  line-height: 1.65;
}

.personalizacao-cta {
  background: linear-gradient(135deg, var(--rosa) 0%, #C01062 100%);
  border-radius: var(--radius-lg);
  padding: 44px 52px;
}

.personalizacao-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.personalizacao-cta h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 6px;
}

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

.personalizacao-cta .btn-rosa {
  background: var(--branco);
  color: var(--rosa);
  border-color: var(--branco);
  flex-shrink: 0;
}

.personalizacao-cta .btn-rosa:hover {
  background: var(--rosa-claro);
  border-color: var(--rosa-claro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===== GALERIA ===== */
.galeria-section { background: var(--rosa-fundo); }

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

.galeria-item {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transicao), box-shadow var(--transicao);
}

.galeria-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.galeria-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(212,20,114,0.18); }
.galeria-item:hover img { transform: scale(1.06); }

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,20,114,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius);
}

.galeria-overlay i {
  color: #fff;
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.galeria-item:hover .galeria-overlay { opacity: 1; }

/* layout especial: 7 fotos — 3 colunas com última linha centralizada */
.galeria-grid {
  justify-items: center;
}

.galeria-item:nth-child(7) {
  grid-column: 2;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos-section {
  background:
    linear-gradient(rgba(255,255,255,0.91), rgba(255,255,255,0.91)),
    url('images/bg-depoimentos.jpg') center / cover no-repeat;
  background-attachment: scroll, fixed;
}

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

.depoimento-card {
  background: var(--cinza-claro);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform var(--transicao), box-shadow var(--transicao);
}

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

.depoimento-destaque {
  background: var(--rosa-fundo);
  border-color: var(--rosa-claro);
}

.depoimento-stars { margin-bottom: 16px; }

.depoimento-stars i { color: #FFB800; font-size: 0.95rem; }

.depoimento-card p {
  font-size: 0.93rem;
  color: var(--texto-sec);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

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

.autor-avatar {
  width: 44px;
  height: 44px;
  background: var(--rosa);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.autor-teal { background: var(--teal); }

.depoimento-autor span {
  font-weight: 600;
  color: var(--texto);
  font-size: 0.95rem;
}

/* ===== CONTATO ===== */
.contato-section {
  background:
    linear-gradient(rgba(255,245,250,0.93), rgba(255,245,250,0.93)),
    url('images/bg-contato.jpg') center / cover no-repeat;
  background-attachment: scroll, fixed;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 52px;
  align-items: start;
}

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

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

.info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon i { font-size: 1.2rem; }

.info-icon-rosa { background: var(--rosa-claro); }
.info-icon-rosa i { color: var(--rosa); }
.info-icon-teal { background: var(--teal-claro); }
.info-icon-teal i { color: var(--teal); }

.info-item h3 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--texto-sec);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.info-item a {
  font-size: 1rem;
  color: var(--rosa);
  font-weight: 600;
  transition: opacity var(--transicao);
}

.info-item a:hover { opacity: 0.75; }

.info-item p,
.info-item span {
  font-size: 0.93rem;
  color: var(--texto);
  line-height: 1.65;
}

.contato-mapa iframe {
  width: 100%;
  height: 430px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra);
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--texto);
  color: var(--branco);
  padding: 52px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  margin: 0 auto 10px;
  filter: none;
}

.footer-logo-texto {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--rosa);
  display: block;
  margin-bottom: 10px;
}

.footer-logo p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transicao);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  width: 100%;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.83rem;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: background var(--transicao), transform var(--transicao);
}

.whatsapp-float:hover {
  background: #1EBF5A;
  transform: scale(1.08);
}

/* ===== FADE IN (legado) ===== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   EFEITOS & ANIMAÇÕES
   ============================================================ */

/* ===== KEYFRAMES ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatGroup {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes sparkleAnim {
  0%        { opacity: 0; transform: scale(0) rotate(0deg); }
  25%       { opacity: 1; transform: scale(1.1) rotate(60deg); }
  75%       { opacity: 0.7; transform: scale(0.9) rotate(150deg); }
  100%      { opacity: 0; transform: scale(0) rotate(220deg); }
}

@keyframes shimmer {
  from { transform: translateX(-100%) skewX(-15deg); }
  to   { transform: translateX(260%) skewX(-15deg); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseRing {
  0%   { box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes revealLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes revealRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes tagPop {
  0%   { opacity: 0; transform: translateY(-8px) scale(0.9); }
  60%  { transform: translateY(2px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,20,114,0); }
  50%       { box-shadow: 0 0 16px 2px rgba(212,20,114,0.2); }
}

/* ===== BARRA DE PROGRESSO DE SCROLL ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--rosa) 0%, var(--teal) 100%);
  z-index: 2001;
  transition: width 0.12s linear;
  pointer-events: none;
}

/* ===== HERO — ANIMAÇÕES DE ENTRADA ===== */
.hero-tag         { animation: tagPop     0.6s ease 0.1s both; }
.hero h1          { animation: fadeSlideUp 0.7s ease 0.15s both; }
.hero h2          { animation: fadeSlideUp 0.7s ease 0.3s  both; }
.hero-desc        { animation: fadeSlideUp 0.7s ease 0.45s both; }
.hero-btns        { animation: fadeSlideUp 0.7s ease 0.6s  both; }
.hero-info        { animation: fadeSlideUp 0.7s ease 0.75s both; }

/* Hero visual flutuando como grupo */
.hero-visual {
  animation: floatGroup 5s ease-in-out infinite;
}

/* Cada card entra com delay diferente */
.hero-card:nth-child(1) { animation: revealRight 0.7s ease 0.5s both; }
.hero-card:nth-child(2) { animation: revealRight 0.7s ease 0.65s both; }
.hero-card:nth-child(3) { animation: revealRight 0.7s ease 0.8s both; }

/* Após entrar, reaplicar float no grupo (JS remove a classe hero-entering) */

/* ===== SPARKLES ===== */
.sparkle {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: sparkleAnim var(--dur, 3s) ease-in-out var(--delay, 0s) infinite;
  color: var(--rosa);
  font-size: var(--size, 1rem);
  opacity: 0;
}

.sparkle-teal { color: var(--teal); }

/* ===== REVEAL AO SCROLL ===== */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal="up"]    { transform: translateY(36px); }
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(0.92); }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ===== CARD SHINE (brilho no hover) ===== */
.produto-card,
.mvv-card,
.depoimento-card,
.step-card,
.hero-card {
  overflow: hidden;
}

.produto-card::before,
.mvv-card::before,
.depoimento-card::before,
.step-card::before,
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.3) 50%,
    transparent 100%
  );
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 2;
}

.produto-card:hover::before,
.mvv-card:hover::before,
.depoimento-card:hover::before,
.step-card:hover::before,
.hero-card:hover::before {
  animation: shimmer 0.6s ease forwards;
}

/* ===== VITRINE BANNER — GRADIENTE ANIMADO ===== */
.vitrine-banner {
  background: linear-gradient(135deg, var(--rosa) 0%, #B81060 40%, #9B0E56 70%, var(--rosa) 100%) !important;
  background-size: 300% 300% !important;
  animation: gradientShift 6s ease infinite;
}

/* ===== WHATSAPP FLOAT — PULSO ===== */
.whatsapp-float {
  animation: pulseRing 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  animation: none;
  transform: scale(1.1);
}

/* ===== SECTION HEADER — ENTRADA ===== */
.section-header .section-tag { transition: none; }

/* ===== NÚMERO CARD HOVER ===== */
.numero-card {
  transition: transform var(--transicao);
}

.numero-card:hover {
  transform: translateY(-4px);
}

.numero-card:hover .numero {
  animation: borderGlow 1s ease;
}

/* ===== INFO ITEM SLIDE ===== */
.info-item {
  transition: transform var(--transicao);
}

.info-item:hover {
  transform: translateX(6px);
}

/* ===== STEP CONNECTOR ===== */
.steps-grid {
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 108px;
  left: calc(33.33% - 12px);
  right: calc(33.33% - 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--rosa-claro), var(--rosa), var(--teal), var(--teal-claro));
  z-index: 0;
  pointer-events: none;
}

/* ===== GALERIA OVERLAY ===== */
.galeria-item:hover img {
  filter: brightness(1.08) saturate(1.1);
}

/* ===== PRODUTO CARD — ÍCONE ROTAÇÃO ===== */
.produto-card:hover .produto-icon i {
  transform: rotate(-10deg) scale(1.15);
  transition: transform 0.3s ease;
}

/* ===== @prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  #scroll-progress { transition: none; }
}

/* Desativar float e sparkles em mobile */
@media (max-width: 1023px) {
  .hero-visual { animation: none; }
  .steps-grid::before { display: none; }
  .sparkle { display: none; }
}

/* ===== VITRINE BANNER SECTION ===== */
.vitrine-banner-section {
  background: var(--rosa-fundo);
  padding: 0 0 88px;
}

.vitrine-banner {
  background: linear-gradient(135deg, var(--rosa) 0%, #B81060 100%);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Bolhas decorativas de fundo */
.vitrine-banner::before,
.vitrine-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.vitrine-banner::before {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.vitrine-banner::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: 200px;
}

.vitrine-banner-deco {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.vitrine-banner-deco i {
  font-size: 2.8rem;
  color: var(--branco);
}

.vitrine-banner-content {
  position: relative;
  z-index: 1;
}

.vitrine-banner-tag {
  background: rgba(255,255,255,0.2);
  color: var(--branco);
  margin: 0 0 14px;
}

.vitrine-banner-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.vitrine-banner-content p {
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.vitrine-banner-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Ícones flutuantes do lado direito */
.vitrine-banner-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.vb-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transicao), transform var(--transicao);
}

.vb-icon:hover {
  background: rgba(255,255,255,0.28);
  transform: scale(1.1);
}

.vb-icon i { font-size: 1.3rem; color: var(--branco); }

.vb-icon-2 { margin-top: 8px; }
.vb-icon-4 { margin-top: -8px; }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loadingScreen {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,245,250,0.90), rgba(255,255,255,0.88)),
    url('images/bg-hero.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

#loadingScreen.oculto {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loading-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(212, 20, 114, 0.28);
  border: 3px solid rgba(212, 20, 114, 0.2);
  animation: pulseRosa 2s ease-in-out infinite;
}

.loading-logo {
  height: 64px;
  width: auto;
  animation: pulseRosa 1.2s ease-in-out infinite;
}

.loading-bar {
  width: 160px;
  height: 4px;
  background: var(--rosa-claro);
  border-radius: 4px;
  overflow: hidden;
}

.loading-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rosa), var(--teal));
  border-radius: 4px;
  animation: loadingFill 1.4s ease-in-out forwards;
}

@keyframes pulseRosa {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.07); opacity: 0.82; }
}

@keyframes loadingFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: 40px;
  background: linear-gradient(90deg, var(--rosa) 0%, #B81060 55%, var(--teal-escuro) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: height 0.35s ease, opacity 0.35s ease;
}

.announcement-bar.dismissing {
  height: 0;
  opacity: 0;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  width: 100%;
  padding: 0 48px;
}

.announcement-inner span {
  color: var(--branco);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-inner span i { margin-right: 6px; }

.announcement-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 8px 14px;
  font-size: 0.85rem;
  transition: color var(--transicao);
  line-height: 1;
}

.announcement-close:hover { color: var(--branco); }

/* Header/nav offset quando barra está visível */
body.has-bar header { top: 40px; transition: top 0.35s ease, box-shadow var(--transicao); }
body.has-bar .mobile-nav { top: calc(40px + var(--header-height)); }
body.has-bar .hero { padding-top: calc(40px + var(--header-height) + 72px); }

/* ============================================================
   HEADER ACTIONS (dark toggle + hamburger wrapper)
   ============================================================ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ============================================================
   DARK MODE TOGGLE
   ============================================================ */
.dark-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--borda);
  background: var(--cinza-claro);
  color: var(--texto-sec);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all var(--transicao);
}

.dark-toggle:hover {
  border-color: var(--rosa);
  color: var(--rosa);
  background: var(--rosa-fundo);
}

/* ============================================================
   DARK MODE
   ============================================================ */
html.dark {
  --branco:       #111827;
  --cinza-claro:  #1F2937;
  --texto:        #F3F4F6;
  --texto-sec:    #9CA3AF;
  --borda:        #374151;
  --rosa-fundo:   #1F0B16;
  --rosa-claro:   #3D1228;
  --teal-claro:   #0B2826;
  --sombra:       0 4px 24px rgba(0,0,0,0.5);
  --sombra-hover: 0 8px 40px rgba(0,0,0,0.7);
}

html.dark body { background: #111827; }

html.dark #loadingScreen {
  background:
    linear-gradient(rgba(10,10,20,0.92), rgba(10,10,20,0.90)),
    url('images/bg-hero.jpg') center / cover no-repeat;
}

html.dark header,
html.dark .mobile-nav {
  background: #0A0A14;
  border-color: rgba(255,255,255,0.06);
}

html.dark .hero {
  background:
    linear-gradient(135deg, rgba(17,24,39,0.94) 0%, rgba(17,24,39,0.88) 50%, rgba(31,11,22,0.88) 100%),
    url('images/bg-hero.jpg') center / cover no-repeat;
  background-attachment: fixed, fixed;
}

html.dark .sobre-section {
  background:
    linear-gradient(rgba(17,24,39,0.96), rgba(17,24,39,0.96)),
    url('images/bg-sobre.jpg') center / cover no-repeat;
  background-attachment: scroll, fixed;
}

html.dark .personalizacao-section {
  background:
    linear-gradient(rgba(17,24,39,0.96), rgba(17,24,39,0.96)),
    url('images/bg-personalizacao.jpg') center / cover no-repeat;
  background-attachment: scroll, fixed;
}

html.dark .depoimentos-section {
  background:
    linear-gradient(rgba(17,24,39,0.94), rgba(17,24,39,0.94)),
    url('images/bg-depoimentos.jpg') center / cover no-repeat;
  background-attachment: scroll, fixed;
}

html.dark .contato-section {
  background:
    linear-gradient(rgba(17,24,39,0.96), rgba(17,24,39,0.96)),
    url('images/bg-contato.jpg') center / cover no-repeat;
  background-attachment: scroll, fixed;
}

html.dark .faq-section {
  background:
    linear-gradient(rgba(17,24,39,0.96), rgba(17,24,39,0.96)),
    url('images/bg-sobre.jpg') center / cover no-repeat;
  background-attachment: scroll, fixed;
}

html.dark .historia-block {
  background: #1F2937;
  border-color: #374151;
}

html.dark .footer { background: #0F172A; }

html.dark .hamburger span { background: #F3F4F6; }
html.dark .mobile-nav a { color: #F3F4F6; }

html.dark .form-group input,
html.dark .form-group select,
html.dark .form-group textarea {
  background: #1F2937;
  color: #F3F4F6;
  border-color: #374151;
}

html.dark .contato-form-wrap { background: #1F2937; border-color: #374151; }

html.dark .faq-item { background: #1F2937; border-color: #374151; }

html.dark .categoria-card { background: #1F2937; border-color: #374151; }

html.dark .instagram-section { background: #1F2937; }


/* ============================================================
   BACK TO TOP
   ============================================================ */
.btn-topo {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--rosa);
  color: var(--branco);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 16px rgba(212, 20, 114, 0.35);
}

.btn-topo.visivel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-topo:hover {
  background: var(--rosa-escuro);
  transform: translateY(-3px);
}

/* ============================================================
   POPUP BOAS-VINDAS
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.popup-overlay.ativo {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 44px 36px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  transform: scale(0.9) translateY(24px);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}

.popup-overlay.ativo .popup-box {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--cinza-claro);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--texto-sec);
  font-size: 0.85rem;
  transition: all var(--transicao);
}

.popup-close:hover { background: var(--rosa-claro); color: var(--rosa); }

.popup-deco {
  font-size: 3.6rem;
  margin-bottom: 16px;
  display: block;
  animation: floatGroup 3s ease-in-out infinite;
  line-height: 1;
}

.popup-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rosa);
  margin-bottom: 10px;
}

.popup-box p {
  color: var(--texto-sec);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.popup-skip {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--texto-sec);
  font-size: 0.83rem;
  margin-top: 12px;
  cursor: pointer;
  font-family: var(--font);
  transition: color var(--transicao);
}

.popup-skip:hover { color: var(--rosa); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.ativo {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transicao);
  z-index: 1;
}

.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 20px;
  animation: fadeSlideUp 0.25s ease both;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content .lb-img {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.lightbox-content .lb-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transicao);
}

.lightbox-nav:hover { background: rgba(255,255,255,0.3); }

#lightboxPrev { left: 20px; }
#lightboxNext { right: 20px; }

/* ============================================================
   CATEGORIAS
   ============================================================ */
.categorias-section { background: var(--branco); }

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.categoria-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 16px 24px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--borda);
  background: var(--cinza-claro);
  text-decoration: none;
  transition: all var(--transicao);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.categoria-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transicao);
  border-radius: var(--radius-lg);
}

.cat-casamento::before    { background: linear-gradient(135deg, #FFF0F8, var(--rosa-claro)); }
.cat-aniversario::before  { background: linear-gradient(135deg, #FFF7E6, #FFE0A0); }
.cat-bebe::before         { background: linear-gradient(135deg, #EFF6FF, #BFDBFE); }
.cat-natal::before        { background: linear-gradient(135deg, #F0FDF4, #BBF7D0); }
.cat-maes::before         { background: linear-gradient(135deg, #FFF0F8, #FECDD3); }
.cat-formatura::before    { background: linear-gradient(135deg, #EFF6FF, #BFDBFE); }

.categoria-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra);
  border-color: transparent;
}

.categoria-card:hover::before { opacity: 1; }

.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  transition: transform var(--transicao);
}

.categoria-card:hover .cat-icon { transform: scale(1.18) rotate(-6deg); }

.cat-casamento .cat-icon    { background: var(--rosa-claro);   color: var(--rosa); }
.cat-aniversario .cat-icon  { background: #FEF3C7;             color: #D97706; }
.cat-bebe .cat-icon         { background: #DBEAFE;             color: #2563EB; }
.cat-natal .cat-icon        { background: #DCFCE7;             color: #16A34A; }
.cat-maes .cat-icon         { background: #FCE7F3;             color: #DB2777; }
.cat-formatura .cat-icon    { background: #DBEAFE;             color: #1D4ED8; }

.categoria-card span {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--texto);
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.3;
}

/* ============================================================
   INSTAGRAM MOCK FEED
   ============================================================ */
.instagram-section { background: var(--cinza-claro); }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.insta-post {
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  cursor: pointer;
  transition: transform var(--transicao), filter var(--transicao);
  position: relative;
  overflow: hidden;
}

.insta-post:hover { transform: scale(1.04); filter: brightness(1.08) saturate(1.1); }

.ip-1 { background: linear-gradient(135deg, var(--rosa-claro), var(--rosa)); }
.ip-2 { background: linear-gradient(135deg, var(--teal-claro), var(--teal)); }
.ip-3 { background: linear-gradient(135deg, #FEF3C7, #F59E0B); }
.ip-4 { background: linear-gradient(135deg, #DBEAFE, #3B82F6); }
.ip-5 { background: linear-gradient(135deg, #FCE7F3, #EC4899); }
.ip-6 { background: linear-gradient(135deg, var(--teal-claro), #6DD5CC); }
.ip-7 { background: linear-gradient(135deg, #FFDDE8, var(--rosa)); }
.ip-8 { background: linear-gradient(135deg, #D5F5F3, var(--teal)); }
.ip-9 { background: linear-gradient(135deg, #FEF3C7, #EAB308); }

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

.instagram-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--texto-sec);
  font-size: 0.97rem;
}

.instagram-handle i { color: #E1306C; font-size: 1.4rem; }
.instagram-handle strong { color: var(--texto); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
    url('images/bg-sobre.jpg') center / cover no-repeat;
  background-attachment: scroll, fixed;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--branco);
  transition: box-shadow var(--transicao), border-color var(--transicao);
}

.faq-item.ativo {
  box-shadow: var(--sombra);
  border-color: var(--rosa-claro);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: var(--font);
}

.faq-question span {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--texto);
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--rosa-claro);
  color: var(--rosa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: transform var(--transicao), background var(--transicao), color var(--transicao);
}

.faq-item.ativo .faq-icon {
  background: var(--rosa);
  color: var(--branco);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.ativo .faq-answer { max-height: 280px; }

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--texto-sec);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ============================================================
   FORMULÁRIO DE CONTATO
   ============================================================ */
.contato-form-wrap {
  margin-bottom: 48px;
  background: var(--cinza-claro);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  border: 1px solid var(--borda);
}

.contato-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 6px;
}

.contato-form-wrap > p {
  color: var(--texto-sec);
  font-size: 0.93rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.form-group + .form-group:not(.form-row .form-group) {
  margin-top: 16px;
}

#contactForm .form-group:last-of-type {
  margin-top: 16px;
}

.form-group label {
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--texto);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--borda);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.93rem;
  color: var(--texto);
  background: var(--branco);
  transition: border-color var(--transicao), box-shadow var(--transicao);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rosa);
  box-shadow: 0 0 0 3px rgba(212,20,114,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group select { appearance: auto; }

.form-actions {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVIDADE — 320px → 4K
   ============================================================ */

/* ===== 4K / Widescreen ===== */
@media (min-width: 2560px) {
  :root { --container: 1600px; }
  .section-header h2 { font-size: 3.2rem; }
  .hero h1 { font-size: 5.5rem; }
}

/* ===== Full HD ===== */
@media (min-width: 1920px) and (max-width: 2559px) {
  :root { --container: 1440px; }
}

/* ===== HD / Laptop grande ===== */
@media (min-width: 1280px) and (max-width: 1919px) {
  :root { --container: 1160px; }
}

/* ===== Laptop / Tablet paisagem ===== */
@media (min-width: 1024px) and (max-width: 1279px) {
  :root { --container: 960px; }

  /* Nav compacta para caber todos os itens */
  .desktop-nav ul { gap: 14px; }
  .desktop-nav a { font-size: 0.82rem; }

  .mvv-grid { gap: 16px; }

  .historia-block {
    padding: 36px 40px;
    gap: 40px;
  }

  .personalizacao-cta { padding: 36px 40px; }

  /* Vitrine banner: ocultar ícones flutuantes e ajustar padding */
  .vitrine-banner {
    padding: 44px 44px;
    gap: 32px;
  }

  .vitrine-banner-icons { display: none; }
  .vitrine-banner-content p { max-width: 100%; }
}

/* ===== Tablet ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .hamburger { display: flex; }
  .desktop-nav { display: none; }

  /* Desativar parallax — bug iOS/Android */
  .hero,
  .sobre-section,
  .personalizacao-section,
  .depoimentos-section,
  .contato-section {
    background-attachment: scroll, scroll;
  }

  .section { padding: 68px 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-desc { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; flex-wrap: wrap; }
  .hero-info { justify-content: center; }
  .hero-tag { margin: 0 auto 14px; }
  .hero-visual { display: none; }

  /* MVV: 2 colunas aproveitam melhor o espaço em tablet */
  .mvv-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .historia-block {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 28px;
  }

  .historia-numeros { justify-content: center; }

  .produtos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .vitrine-banner {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 24px;
    text-align: center;
  }

  .vitrine-banner-deco { margin: 0 auto; }
  .vitrine-banner-tag { margin: 0 auto 14px; }
  .vitrine-banner-content p { max-width: 100%; }
  .vitrine-banner-btns { justify-content: center; flex-wrap: wrap; }
  .vitrine-banner-icons { display: none; }

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

  .personalizacao-cta { padding: 32px 28px; }
  .personalizacao-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

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

  /* Depoimentos: 2 colunas em tablet landscape aproveitam o espaço */
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .contato-grid { grid-template-columns: 1fr; gap: 36px; }
  .contato-mapa iframe { height: 320px; }
}

/* ===== Phablet ===== */
@media (min-width: 600px) and (max-width: 767px) {
  .hamburger { display: flex; }
  .desktop-nav { display: none; }

  .hero,
  .sobre-section,
  .personalizacao-section,
  .depoimentos-section,
  .contato-section {
    background-attachment: scroll, scroll;
  }

  .section { padding: 60px 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-desc { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; flex-wrap: wrap; }
  .hero-info { justify-content: center; }
  .hero-tag { margin: 0 auto 14px; }
  .hero-visual { display: none; }

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

  .historia-block {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }

  .historia-numeros { justify-content: center; }

  .produtos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .vitrine-banner {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 20px;
    text-align: center;
  }

  .vitrine-banner-deco { margin: 0 auto; }
  .vitrine-banner-tag { margin: 0 auto 14px; }
  .vitrine-banner-btns { justify-content: center; flex-wrap: wrap; }
  .vitrine-banner-icons { display: none; }

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

  .personalizacao-cta { padding: 28px 24px; }
  .personalizacao-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

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

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

  .contato-grid { grid-template-columns: 1fr; gap: 32px; }
  .contato-mapa iframe { height: 280px; }
}

/* ===== Mobile ===== */
@media (max-width: 599px) {
  .hamburger { display: flex; }
  .desktop-nav { display: none; }

  .hero,
  .sobre-section,
  .personalizacao-section,
  .depoimentos-section,
  .contato-section {
    background-attachment: scroll, scroll;
  }

  :root { --header-height: 64px; }

  .section { padding: 52px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }
  .section-header p { max-width: 100%; }

  .logo { height: 44px; }

  .hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hero h1 { font-size: 2.6rem; }
  .hero h2 { font-size: 1rem; }
  .hero-desc { margin: 0 auto 28px; font-size: 0.93rem; }

  .hero-btns {
    justify-content: center;
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-info {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .hero-tag { margin: 0 auto 14px; }
  .hero-visual { display: none; }

  .mvv-grid { grid-template-columns: 1fr; gap: 14px; }
  .mvv-card { padding: 28px 22px; }

  .historia-block {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 20px;
  }

  .historia-numeros {
    justify-content: space-around;
    gap: 12px;
  }

  .numero { font-size: 1.8rem; }

  .produtos-grid { grid-template-columns: 1fr; gap: 14px; }
  .produto-card { padding: 30px 22px; }

  .vitrine-banner {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 20px;
    text-align: center;
  }

  .vitrine-banner-deco { margin: 0 auto; width: 80px; height: 80px; }
  .vitrine-banner-deco i { font-size: 2.2rem; }
  .vitrine-banner-tag { margin: 0 auto 12px; }
  .vitrine-banner-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .vitrine-banner-btns .btn { justify-content: center; }
  .vitrine-banner-icons { display: none; }

  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step-card { padding: 40px 22px 32px; }

  .personalizacao-cta { padding: 28px 20px; }
  .personalizacao-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .personalizacao-cta h3 { font-size: 1.1rem; }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .galeria-item:nth-child(7) { grid-column: 1 / -1; max-width: 50%; justify-self: center; }

  .depoimentos-grid { grid-template-columns: 1fr; gap: 14px; }
  .depoimento-card { padding: 26px 20px; }

  .contato-grid { grid-template-columns: 1fr; gap: 28px; }
  .contato-info { gap: 20px; }
  .contato-mapa iframe { height: 240px; }

  .footer { padding: 40px 0 20px; }
  .footer-links { gap: 14px; }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ===== Mobile muito pequeno ===== */
@media (max-width: 380px) {
  .hero h1 { font-size: 2.1rem; }
  .hero h2 { font-size: 0.92rem; }
  .hero-desc { font-size: 0.9rem; }

  .historia-block { padding: 20px 14px; }
  .historia-numeros { flex-direction: column; align-items: center; gap: 16px; }
  .numero { font-size: 1.6rem; }

  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-item:nth-child(7) { grid-column: auto; max-width: 100%; }

  .produto-card { padding: 26px 18px; }
  .mvv-card { padding: 24px 18px; }
  .step-card { padding: 36px 16px 26px; }
  .depoimento-card { padding: 22px 16px; }

  .contato-mapa iframe { height: 200px; }

  .footer-links { flex-direction: column; align-items: center; gap: 10px; }
}

/* ============================================================
   RESPONSIVIDADE — NOVOS COMPONENTES
   ============================================================ */

/* Laptop */
@media (min-width: 1024px) and (max-width: 1279px) {
  .categorias-grid { grid-template-columns: repeat(3, 1fr); }
  .contato-form-wrap { padding: 36px 36px; }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  body.has-bar .hero { background-attachment: scroll, scroll; }

  .categorias-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }

  .faq-section { background-attachment: scroll, scroll; }

  .contato-form-wrap { padding: 32px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }

  .btn-topo { right: 20px; bottom: 88px; }
}

/* Phablet */
@media (min-width: 600px) and (max-width: 767px) {
  .announcement-inner span { font-size: 0.76rem; }

  .categorias-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }

  .contato-form-wrap { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }

  .btn-topo { right: 16px; bottom: 84px; }
}

/* Mobile */
@media (max-width: 599px) {
  .announcement-bar { height: 36px; }
  .announcement-inner { padding: 0 40px; }
  .announcement-inner span { font-size: 0.72rem; }
  body.has-bar header { top: 36px; }
  body.has-bar .mobile-nav { top: calc(36px + var(--header-height)); }
  body.has-bar .hero { padding-top: calc(36px + var(--header-height) + 40px); }

  .categorias-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .categoria-card { padding: 24px 12px 18px; }
  .cat-icon { width: 52px; height: 52px; font-size: 1.3rem; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 100%; margin-bottom: 24px; }
  .insta-post { font-size: 1.8rem; }

  .faq-list { gap: 10px; }
  .faq-question { padding: 16px 18px; }
  .faq-question span { font-size: 0.9rem; }
  .faq-answer p { padding: 0 18px 18px; }

  .contato-form-wrap { padding: 24px 20px; margin-bottom: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }

  .btn-topo { right: 16px; bottom: 80px; width: 40px; height: 40px; }

  .popup-box { padding: 36px 24px 28px; }
  .popup-deco { font-size: 2.8rem; }
  .popup-box h3 { font-size: 1.3rem; }

  .lightbox-nav { width: 40px; height: 40px; }
  #lightboxPrev { left: 8px; }
  #lightboxNext { right: 8px; }
  .lightbox-content { padding: 16px; }
  .lightbox-content .lb-img { max-width: 92vw; max-height: 78vh; }
}
