/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  background: #0c0c0f;
  color: #e8e6e3;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- Noise overlay --- */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Logo grande no centro (marca d'água) --- */
.logo-centro {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.logo-centro-img {
  max-width: min(70vw, 520px);
  width: 100%;
  height: auto;
  opacity: 0.08;
  object-fit: contain;
  filter: blur(1.5px);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 35%, transparent 75%);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-position: center;
  -webkit-mask-position: center;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(12, 12, 15, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.15rem 0;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo:active {
  opacity: 0.7;
}

.logo-img {
  height: 44px;
  width: auto;
  max-height: 44px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: blur(0.35px);
  mask-image: radial-gradient(ellipse 120% 90% at 40% 50%, black 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 120% 90% at 40% 50%, black 25%, transparent 72%);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-position: center;
  -webkit-mask-position: center;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-img {
  filter: blur(0);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: rgba(232, 230, 227, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 0.5rem 1rem;
  background: #25d366;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta:hover {
  background: #20bd5a;
  color: #fff !important;
}

/* --- Sobre --- */
.sobre {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.sobre .section-title {
  margin-bottom: 1rem;
}

.sobre-texto {
  max-width: 520px;
  margin: 0 auto 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(232, 230, 227, 0.85);
}

.sobre-texto strong {
  color: #f9a8d4;
  font-weight: 600;
}

.sobre-texto:last-child {
  margin-bottom: 0;
}

/* --- Depoimento --- */
.depoimento {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.depoimento-quote {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.depoimento-quote p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(232, 230, 227, 0.9);
  margin: 0 0 1rem;
  font-style: italic;
}

.depoimento-footer {
  font-size: 0.9rem;
  color: rgba(232, 230, 227, 0.5);
}

/* --- Por que me escolher --- */
.por-que-eu {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.por-que-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.por-que-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.por-que-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.por-que-item p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(232, 230, 227, 0.8);
  line-height: 1.45;
}

/* --- Como funciona --- */
.como-funciona {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.passos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.passo {
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.passo-num {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.passo h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.passo p {
  font-size: 0.9rem;
  color: rgba(232, 230, 227, 0.65);
  margin: 0;
  line-height: 1.5;
}

/* --- FAQ --- */
.faq {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-list {
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.faq-pergunta {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-pergunta::-webkit-details-marker { display: none; }

.faq-pergunta::after {
  content: "+";
  font-size: 1.2rem;
  color: rgba(232, 230, 227, 0.5);
}

.faq-item[open] .faq-pergunta::after {
  content: "−";
}

.faq-resposta {
  padding: 0.75rem 1.25rem 1rem;
  margin: 0;
  font-size: 0.95rem;
  color: rgba(232, 230, 227, 0.7);
  line-height: 1.55;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Botão WhatsApp flutuante --- */
.float-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* --- Main layout --- */
main {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  padding-top: 6rem;
}

/* --- Hero --- */
.hero {
  padding: 4rem 0 5rem;
  text-align: center;
}

.hero-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232, 230, 227, 0.5);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.gradient {
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 50%, #f59e0b 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(232, 230, 227, 0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.hero-stat {
  font-size: 0.95rem;
  color: rgba(232, 230, 227, 0.6);
}

.hero-stat strong {
  color: #a78bfa;
  font-weight: 600;
}

/* --- O que faço --- */
.o-que-faco {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.o-que-faco-intro {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(232, 230, 227, 0.8);
  text-align: center;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.servico {
  padding: 1.35rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s, background 0.2s;
}

.servico:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(167, 139, 250, 0.2);
}

.servico-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.servico h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.servico p {
  font-size: 0.85rem;
  color: rgba(232, 230, 227, 0.6);
  margin: 0;
  line-height: 1.5;
}

/* --- Projetos --- */
.projetos {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-title {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 230, 227, 0.45);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(232, 230, 227, 0.6);
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

/* --- Cards --- */
.card {
  position: relative;
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.25);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
}

.card[data-category="perfumes"] .card-bg {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(167, 139, 250, 0.12), transparent);
}

.card[data-category="petshop"] .card-bg {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(34, 197, 94, 0.12), transparent);
}

.card[data-category="bares"] .card-bg {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245, 158, 11, 0.12), transparent);
}

.card[data-category="agendamento"] .card-bg {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(236, 72, 153, 0.12), transparent);
}

.card:hover .card-bg {
  opacity: 1;
}

/* --- Preview dos cards --- */
.card-preview-wrap {
  position: relative;
  display: block;
  margin: -1.75rem -1.75rem 1rem -1.75rem;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  line-height: 0;
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card-preview-wrap:hover .card-overlay {
  opacity: 1;
}

.card-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  vertical-align: middle;
  transition: transform 0.4s ease;
}

.card:hover .card-preview {
  transform: scale(1.05);
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.badge {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(167, 139, 250, 0.15);
  color: rgba(196, 181, 253, 0.95);
}

.card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 230, 227, 0.5);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 0.9rem;
  color: rgba(232, 230, 227, 0.65);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.card-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #a78bfa;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s, color 0.2s;
}

.card-link:hover {
  color: #c4b5fd;
  gap: 0.5rem;
}

/* --- Reveal animação --- */
.card-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* --- Contato --- */
.contato {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contato-desc {
  font-size: 1.05rem;
  color: rgba(232, 230, 227, 0.75);
  max-width: 420px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.contato-note {
  font-size: 0.9rem;
  color: rgba(232, 230, 227, 0.45);
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0c0c0f;
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px -10px rgba(167, 139, 250, 0.5);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.5);
}

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  color: rgba(232, 230, 227, 0.4);
}

/* --- Responsivo --- */
@media (max-width: 600px) {
  .header { padding: 1rem 1.25rem; }
  .logo { opacity: 0.35; }
  .logo-img { height: 36px; max-height: 36px; }
  .nav { gap: 0.75rem; flex-wrap: wrap; }
  .nav-cta { padding: 0.4rem 0.75rem; font-size: 0.85rem; }
  main { padding: 0 1.25rem 3rem; padding-top: 5rem; }
  .hero { padding: 3rem 0 4rem; }
  .hero-stats { gap: 1rem; }
  .hero-stat { font-size: 0.9rem; }
  .depoimento-quote p { font-size: 1.05rem; }
  .o-que-faco-intro { font-size: 1rem; padding: 0 0.5rem; }
  .servicos-grid { grid-template-columns: 1fr; }
  .por-que-grid { grid-template-columns: 1fr; }
  .passos { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .card-preview-wrap { margin: -1.75rem -1.25rem 1rem -1.25rem; }
  .float-whatsapp { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
  .float-whatsapp svg { width: 26px; height: 26px; }
}
