/* Amo Patas Pet Shop — Design system (rosa, preto e gradiente da marca) */

:root {
  --font-display: 'Nunito', Inter, system-ui, sans-serif;
  --font-racing: 'Fredoka', Inter, system-ui, sans-serif;
  --demo-bar-height: 40px;
  --hero-glow: rgba(255, 51, 102, 0.5);
  --brand-pink: #ff3366;
  --brand-pink-dark: #e91e63;
  --brand-pink-light: #ff6b9d;
  --brand-blue: #ff3366;
  --brand-blue-dark: #e91e63;
  --brand-blue-light: #ff6b9d;
  --accent-purple: #962fbf;
  --accent-orange: #fa7e1e;
  --accent-yellow: #feda75;
  --dark-950: #000000;
  --dark-900: #0a0a0a;
  --dark-800: #141414;
  --gradient-brand: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 60%, #962fbf 100%);
  --gradient-brand-soft: linear-gradient(90deg, #ff6b9d, #ff3366, #d62976);
  --header-height: 3.75rem;
}

.font-display { font-family: var(--font-display); }
.font-racing { font-family: var(--font-racing); }

.demo-exit-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: var(--demo-bar-height);
  padding: 0 16px;
  background: #000000;
  border-bottom: 1px solid rgba(255, 51, 102, 0.25);
  color: #e5e7eb;
  font-size: 0.8125rem;
}

.demo-exit-bar__label { color: #94a3b8; font-size: 0.75rem; }
.demo-exit-bar__link { color: #ff6b9d; font-weight: 600; text-decoration: none; }
.demo-exit-bar__link:hover { text-decoration: underline; }

body.demo-standalone .site-header { top: var(--demo-bar-height); }
body.demo-standalone .site-nav__mobile {
  top: calc(var(--demo-bar-height) + var(--header-height));
  height: calc(100dvh - var(--demo-bar-height) - var(--header-height));
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  overflow: visible;
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.site-header.header--scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 51, 102, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.875rem 1rem;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: white;
  transition: color 0.3s;
}

.header--scrolled .site-nav__brand { color: white; }

.site-nav__brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(#000, #000) padding-box, var(--gradient-brand) border-box;
  box-shadow: 0 0 12px rgba(214, 41, 118, 0.35);
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .site-nav__links { display: flex; }
}

.site-nav__link {
  font-family: var(--font-racing);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s, text-shadow 0.2s;
}

.site-nav__link:hover {
  color: var(--brand-blue-light);
  text-shadow: 0 0 12px rgba(255, 51, 102, 0.5);
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav__ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  color: white;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 16px rgba(220, 39, 67, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.site-nav__ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.5);
}

.site-nav__cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--gradient-brand);
  padding: 0.5rem 1.125rem;
  font-family: var(--font-racing);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-glow-nav 3s ease-in-out infinite;
}

@keyframes pulse-glow-nav {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 51, 102, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(255, 51, 102, 0.6); }
}

.site-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 51, 102, 0.55);
}

@media (min-width: 1024px) {
  .site-nav__cta { display: inline-flex; }
}

.site-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  color: white;
  background: rgba(255, 51, 102, 0.15);
  border: 1px solid rgba(255, 51, 102, 0.3);
}

@media (min-width: 1024px) {
  .site-nav__toggle { display: none; }
}

.site-nav__mobile {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  background: var(--dark-950);
  padding: 1.5rem 1rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.site-nav__mobile:not(.hidden) {
  display: block;
}

.site-nav__mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav__mobile-link {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-racing);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav__mobile-link--ig {
  color: #e1306c;
}

.site-nav__mobile-link--cta {
  color: var(--brand-blue-light);
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-950);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg--mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 5px;
  background: var(--dark-950);
  will-change: transform;
}

.hero__bg-tile {
  position: relative;
  overflow: hidden;
  min-height: 0;
  isolation: isolate;
}

.hero__bg-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: ken-burns 24s ease-in-out infinite alternate;
  will-change: transform;
  transform: scale(1.08);
}

/* Bento — posição única por peça */
.hero__bg-tile:nth-child(1)  { grid-column: 1 / 6;  grid-row: 1 / 5; }
.hero__bg-tile:nth-child(2)  { grid-column: 6 / 9;  grid-row: 1 / 3; border-radius: 0 1.25rem 0 0; }
.hero__bg-tile:nth-child(3)  { grid-column: 9 / 11; grid-row: 1 / 3; }
.hero__bg-tile:nth-child(4)  { grid-column: 11 / 13; grid-row: 1 / 3; border-radius: 0 0 1rem 0; }
.hero__bg-tile:nth-child(5)  { grid-column: 6 / 8;  grid-row: 3 / 5; }
.hero__bg-tile:nth-child(6)  { grid-column: 8 / 13; grid-row: 3 / 5; border-radius: 0 0 0 1.5rem; }
.hero__bg-tile:nth-child(7)  { grid-column: 1 / 4;  grid-row: 5 / 8; border-radius: 1.25rem 0 0 0; }
.hero__bg-tile:nth-child(8)  { grid-column: 4 / 6;  grid-row: 5 / 8; }
.hero__bg-tile:nth-child(9)  { grid-column: 6 / 8;  grid-row: 5 / 7; }
.hero__bg-tile:nth-child(10) { grid-column: 8 / 10;  grid-row: 5 / 7; border-radius: 0.75rem; }
.hero__bg-tile:nth-child(11) { grid-column: 10 / 13; grid-row: 5 / 7; border-radius: 0 1rem 1rem 0; }
.hero__bg-tile:nth-child(12) { grid-column: 6 / 13; grid-row: 7 / 9; border-radius: 0 0 1.25rem 0; }

/* Recortes geométricos (no container — não conflita com animação) */
.hero__bg-tile--diamond { clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.hero__bg-tile--slant   { clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%); }
.hero__bg-tile--hexagon { clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); }
.hero__bg-tile--strip   { clip-path: polygon(0 12%, 100% 0%, 100% 88%, 0 100%); }
.hero__bg-tile--banner  { clip-path: polygon(0 18%, 100% 0%, 100% 100%, 0 82%); }

.hero__bg-tile--diamond img,
.hero__bg-tile--hexagon img {
  transform: scale(1.15);
}

.hero__bg-tile:nth-child(3n + 1) img { animation-delay: -4s; }
.hero__bg-tile:nth-child(3n + 2) img { animation-delay: -12s; }
.hero__bg-tile:nth-child(3n) img { animation-delay: -20s; }

.hero__bg-tile:nth-child(odd) img { object-position: center 40%; }
.hero__bg-tile:nth-child(even) img { object-position: center 55%; }

@media (max-width: 1024px) {
  .hero__bg--mosaic {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(11, 1fr);
    gap: 4px;
  }

  .hero__bg-tile:nth-child(1)  { grid-column: 1 / 5; grid-row: 1 / 5; }
  .hero__bg-tile:nth-child(2)  { grid-column: 5 / 9; grid-row: 1 / 3; }
  .hero__bg-tile:nth-child(3)  { grid-column: 5 / 7; grid-row: 3 / 5; }
  .hero__bg-tile:nth-child(4)  { grid-column: 7 / 9; grid-row: 3 / 5; }
  .hero__bg-tile:nth-child(5)  { grid-column: 1 / 3; grid-row: 5 / 7; }
  .hero__bg-tile:nth-child(6)  { grid-column: 3 / 9; grid-row: 5 / 7; }
  .hero__bg-tile:nth-child(7)  { grid-column: 1 / 4; grid-row: 7 / 10; }
  .hero__bg-tile:nth-child(8)  { grid-column: 4 / 6; grid-row: 7 / 10; }
  .hero__bg-tile:nth-child(9)  { grid-column: 6 / 8; grid-row: 7 / 9; }
  .hero__bg-tile:nth-child(10) { grid-column: 6 / 8; grid-row: 9 / 11; }
  .hero__bg-tile:nth-child(11) { grid-column: 1 / 4; grid-row: 10 / 12; }
  .hero__bg-tile:nth-child(12) { grid-column: 4 / 9; grid-row: 10 / 12; }
}

@media (max-width: 640px) {
  .hero__bg--mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 3px;
  }

  .hero__bg-tile:nth-child(1)  { grid-column: 1 / 5; grid-row: 1 / 4; }
  .hero__bg-tile:nth-child(2)  { grid-column: 1 / 3; grid-row: 4 / 6; }
  .hero__bg-tile:nth-child(3)  { grid-column: 3 / 5; grid-row: 4 / 6; }
  .hero__bg-tile:nth-child(4)  { grid-column: 1 / 3; grid-row: 6 / 8; }
  .hero__bg-tile:nth-child(5)  { grid-column: 3 / 5; grid-row: 6 / 8; }
  .hero__bg-tile:nth-child(6)  { grid-column: 1 / 5; grid-row: 8 / 9; }
  .hero__bg-tile:nth-child(7)  { grid-column: 1 / 2; grid-row: 9 / 11; }
  .hero__bg-tile:nth-child(8)  { grid-column: 2 / 3; grid-row: 9 / 11; }
  .hero__bg-tile:nth-child(9)  { grid-column: 3 / 5; grid-row: 9 / 10; }
  .hero__bg-tile:nth-child(10) { grid-column: 3 / 4; grid-row: 10 / 11; }
  .hero__bg-tile:nth-child(11) { grid-column: 4 / 5; grid-row: 10 / 11; }
  .hero__bg-tile:nth-child(12) { grid-column: 1 / 5; grid-row: 11 / 13; }

  .hero__bg-tile--diamond,
  .hero__bg-tile--hexagon,
  .hero__bg-tile--slant,
  .hero__bg-tile--strip,
  .hero__bg-tile--banner {
    clip-path: none;
  }

  .hero__bg-tile--diamond img,
  .hero__bg-tile--hexagon img {
    transform: scale(1.08);
  }
}

.hero__bg:not(.hero__bg--mosaic) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: ken-burns 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(255, 51, 102, 0.18), transparent 68%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(214, 41, 118, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(150, 47, 191, 0.12), transparent 50%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.85) 55%, rgba(0, 0, 0, 0.97) 100%);
}

#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

#speed-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.speed-line {
  position: absolute;
  left: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 155, 106, 0.8), transparent);
  animation: speed-line 1.2s linear infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 58rem;
  padding: 7rem 1rem 5rem;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 51, 102, 0.45);
  background: rgba(255, 51, 102, 0.12);
  padding: 0.4rem 1rem;
  font-family: var(--font-racing);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffb3c9;
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 14px var(--brand-blue);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero-title {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: white;
  text-wrap: balance;
}

.hero-title__highlight {
  background: linear-gradient(90deg, #ffffff, #ff6b9d, #ff3366, #d62976, #962fbf);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-text 4s linear infinite;
}

@keyframes shimmer-text {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-lead {
  margin-top: 1.25rem;
  max-width: 38rem;
  margin-inline: auto;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #94a3b8;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.625rem 1rem;
  min-width: 5.5rem;
  transition: transform 0.3s, border-color 0.3s;
}

.stat-pill:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(255, 51, 102, 0.45);
}

.stat-pill strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
}

.stat-pill span {
  font-family: var(--font-racing);
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-pill--accent {
  border-color: rgba(255, 51, 102, 0.5);
  background: rgba(255, 51, 102, 0.14);
}

.stat-pill--accent strong { color: var(--brand-blue-light); }

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-cta { flex-direction: row; justify-content: center; }
}

.btn-glow {
  box-shadow: 0 0 30px var(--hero-glow), 0 8px 24px rgba(255, 51, 102, 0.35);
  animation: pulse-glow-btn 2.5s ease-in-out infinite;
}

@keyframes pulse-glow-btn {
  0%, 100% { box-shadow: 0 0 24px rgba(255, 51, 102, 0.4), 0 8px 24px rgba(255, 51, 102, 0.25); }
  50% { box-shadow: 0 0 40px rgba(214, 41, 118, 0.6), 0 12px 32px rgba(255, 51, 102, 0.45); }
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-racing);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  animation: bounce-scroll 2s ease-in-out infinite;
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Marcas marquee */
.marcas-strip {
  background: #000000;
  border-block: 1px solid rgba(255, 51, 102, 0.2);
  padding: 1rem 0;
  overflow: hidden;
}

.marcas-strip__label {
  text-align: center;
  font-family: var(--font-racing);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.marcas-strip__track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marcas-strip__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marca-pill {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: color 0.2s, text-shadow 0.2s;
}

.marca-pill:hover {
  color: var(--brand-pink-light);
  text-shadow: 0 0 16px rgba(255, 51, 102, 0.65);
}

.marca-sep {
  color: var(--brand-blue);
  font-size: 0.5rem;
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Proof strip */
.proof-strip {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 1rem;
}

.proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .proof-strip__inner { grid-template-columns: repeat(4, 1fr); }
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  transition: transform 0.3s;
}

.proof-item:hover { transform: translateY(-4px); }

.proof-item--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.proof-item--link:hover strong {
  color: #e1306c;
}

.proof-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.14), rgba(214, 41, 118, 0.06));
  color: var(--brand-pink);
  border: 1px solid rgba(255, 51, 102, 0.22);
}

.proof-item strong {
  font-family: var(--font-racing);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--dark-900);
}

.proof-item span {
  font-size: 0.75rem;
  color: #64748b;
}

/* Services */
.service-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(255, 51, 102, 0.12);
  background: white;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  overflow: hidden;
}

.service-card__glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 51, 102, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-card:hover .service-card__glow { opacity: 1; }

.service-card:hover {
  border-color: rgba(255, 51, 102, 0.35);
  box-shadow: 0 16px 40px rgba(255, 51, 102, 0.12);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.15), rgba(255, 51, 102, 0.05));
  color: var(--brand-blue);
  border: 1px solid rgba(255, 51, 102, 0.2);
  transition: transform 0.3s;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dark-900);
}

.service-card__text {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

/* Gallery */
.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.875rem;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 24px rgba(10, 15, 26, 0.15);
  border: 1px solid rgba(255, 51, 102, 0.1);
}

.gallery-item--animated {
  transition: transform 0.4s, box-shadow 0.4s;
}

.gallery-item--animated:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
}

.gallery-item__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
  pointer-events: none;
}

.gallery-item:hover .gallery-item__shine {
  transform: translateX(100%);
}

.gallery-item__ig {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(10, 15, 26, 0.8);
  color: white;
  transition: background 0.2s, transform 0.2s;
}

.gallery-item__ig:hover {
  background: var(--brand-blue);
  transform: scale(1.12) rotate(8deg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 1rem;
  border: 2px dashed rgba(255, 51, 102, 0.25);
  background: rgba(255, 51, 102, 0.04);
  color: #64748b;
}

/* Sobre */
.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.diferencial-item::before {
  content: '▸';
  flex-shrink: 0;
  color: var(--brand-blue);
  font-weight: 700;
  animation: pulse-dot 2s ease-in-out infinite;
}

.sobre-visual {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  border: 2px solid rgba(255, 51, 102, 0.2);
}

.sobre-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 8s ease;
}

.sobre-visual:hover img { transform: scale(1.08); }

.sobre-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  border-radius: 0.75rem;
  background: rgba(10, 15, 26, 0.88);
  backdrop-filter: blur(12px);
  padding: 1rem;
  color: white;
  border: 1px solid rgba(255, 51, 102, 0.25);
}

.sobre-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.sobre-badge span {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Location */
.location-grid {
  align-items: start;
}

.location-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 51, 102, 0.12);
  background: white;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 51, 102, 0.1);
}

.location-card--map:hover {
  transform: none;
}

.location-card__map {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  min-height: 280px;
  border: 0;
}

.location-card__info { padding: 1.5rem; }

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.location-detail__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 51, 102, 0.1);
  color: var(--brand-blue);
}

/* FAQ */
.faq-item {
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: white;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 51, 102, 0.25);
}

.faq-item[open] {
  box-shadow: 0 8px 24px rgba(255, 51, 102, 0.08);
  border-color: rgba(255, 51, 102, 0.3);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.125rem 1.25rem;
  font-family: var(--font-racing);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark-900);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--brand-blue);
  transition: transform 0.3s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item__answer {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 40%, rgba(255, 51, 102, 0.22) 100%);
  padding: 4rem 1rem;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 51, 102, 0.15), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(45, 155, 106, 0.12), transparent 40%);
  animation: cta-pulse 6s ease-in-out infinite alternate;
}

@keyframes cta-pulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
}

.cta-section p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #94a3b8;
}

/* Footer */
.site-footer {
  background: var(--dark-950);
  color: #94a3b8;
  padding: 3rem 1rem 2rem;
  border-top: 1px solid rgba(255, 51, 102, 0.12);
}

.site-footer a {
  color: #e2e8f0;
  transition: color 0.2s;
}

.site-footer a:hover { color: var(--brand-blue-light); }

/* Float contact */
.contact-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  box-shadow: 0 4px 24px rgba(253, 29, 29, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: float-bounce 3s ease-in-out infinite;
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.contact-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(253, 29, 29, 0.55);
  animation: none;
}

.contact-float--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
}

.contact-float--whatsapp:hover {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.94);
  padding: 1rem;
  animation: fade-in 0.3s ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

#lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 0.5rem;
  object-fit: contain;
  border: 2px solid rgba(255, 51, 102, 0.3);
}

#lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 51, 102, 0.2);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animations */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ken-burns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.14) translate(-2%, -1%); }
}

@keyframes speed-line {
  0% { transform: translateX(-100%) skewX(-20deg); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateX(300%) skewX(-20deg); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

body.menu-open { overflow: hidden; }

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-hook {
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  color: #64748b;
}

/* Section dark variant */
.section-dark {
  background: var(--dark-950);
  color: #e2e8f0;
}

.section-dark .section-title { color: white; }
.section-dark .section-hook { color: #94a3b8; }

/* Depoimentos Google */
.reviews-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff5f8 0%, #fff 50%, #fff0f5 100%);
}

.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 51, 102, 0.07), transparent 40%);
  pointer-events: none;
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .reviews-summary {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.reviews-summary__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.reviews-summary__value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--dark-900);
  animation: count-pop 0.8s ease forwards;
}

@keyframes count-pop {
  0% { transform: scale(0.8); opacity: 0; }
  70% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.reviews-summary__stars {
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: #f4b400;
}

.reviews-summary__count {
  margin: 0;
  font-family: var(--font-racing);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.reviews-summary__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.125rem;
  border-radius: 999px;
  background: white;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.reviews-track-wrap {
  overflow: hidden;
  margin-inline: -1rem;
  padding-inline: 1rem;
}

@media (min-width: 1024px) {
  .reviews-track-wrap {
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }
}

.reviews-grid {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar { display: none; }

@media (min-width: 1024px) {
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    scroll-snap-type: none;
  }
}

.review-card {
  flex: 0 0 min(85vw, 320px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid rgba(255, 51, 102, 0.12);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

@media (min-width: 1024px) {
  .review-card { flex: none; }
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 51, 102, 0.3);
  box-shadow: 0 16px 40px rgba(255, 51, 102, 0.12);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-blue);
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.15), rgba(255, 51, 102, 0.05));
  border: 2px solid rgba(255, 51, 102, 0.25);
}

.review-card__name {
  margin: 0;
  font-family: var(--font-racing);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-900);
}

.review-card__badge {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}

.review-card__stars {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: #f4b400;
  line-height: 1;
}

.review-card__when {
  margin: 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

.review-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

.review-card__text::before { content: '\201C'; color: var(--brand-blue, #ff3366); font-weight: 700; }
.review-card__text::after { content: '\201D'; color: var(--brand-blue, #ff3366); font-weight: 700; }

/* Booking form */
.booking-section {
  background: linear-gradient(180deg, #fff0f5 0%, #ffffff 100%);
}

.booking-form {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-form__full {
    grid-column: 1 / -1;
  }
}

.booking-field label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: #ff3366;
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.15);
  outline: none;
}

.booking-field textarea {
  min-height: 5rem;
  resize: vertical;
}

.booking-errors {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 500;
}

.booking-status {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.875rem;
  font-weight: 500;
}

.booking-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(26, 46, 31, 0.1);
  border: 1px solid rgba(255, 51, 102, 0.1);
}

/* Passos */
.passo-card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background: white;
  border: 2px solid rgba(45, 155, 106, 0.15);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.passo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 51, 102, 0.12);
  border-color: rgba(255, 51, 102, 0.3);
}

.passo-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  background: var(--gradient-brand);
  color: white;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.passo-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
}

.passo-card__text {
  margin: 0;
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
}

.review-card--placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem;
}

.contact-float--whatsapp {
  background: #25d366 !important;
  animation: pulse-whatsapp 2.5s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7); }
}

@media (prefers-reduced-motion: reduce) {
  .contact-float--whatsapp {
    animation: none;
  }
  .hero__bg-tile img,
  .gallery-item--animated,
  .marca-pill,
  .tilt-card {
    animation: none !important;
    transition: none !important;
  }
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0;
  padding-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4285f4;
  border-top: 1px solid #f1f5f9;
}

.review-card__source svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.reviews-cta {
  margin-top: 2rem;
  text-align: center;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.625rem;
  background: white;
  border: 2px solid #e2e8f0;
  font-family: var(--font-racing);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #334155;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn-google:hover {
  transform: translateY(-2px);
  border-color: #4285f4;
  box-shadow: 0 8px 24px rgba(66, 133, 244, 0.15);
}
