/* Jéssica Personal — visual premium / 2026 */

:root {
  --void: #06040a;
  --bg: #0a0812;
  --surface: #12101c;
  --elevated: #181528;
  --border: rgba(255, 255, 255, 0.09);
  --text: #f4f2fa;
  --muted: rgba(244, 242, 250, 0.74);
  --faint: rgba(244, 242, 250, 0.5);
  /* Acentos em vermelho (alinhado à marca; gradientes claros → escuros) */
  --rose: #f87171;
  --rose-deep: #dc2626;
  --violet: #991b1b;
  --cyan: #fca5a5;
  --accent-mix: linear-gradient(135deg, #fca5a5 0%, #ef4444 32%, #dc2626 62%, #b91c1c 100%);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-border: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 72px;
  --whatsapp: #25d366;
}

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

html {
  scroll-behavior: smooth;
  /* Evita “pulo” horizontal quando a barra vertical aparece (ex.: após fechar a splash) */
  scrollbar-gutter: stable;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* ── Fundo global ── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(185, 28, 28, 0.14), transparent 50%),
    radial-gradient(90% 60% at 100% 50%, rgba(220, 38, 38, 0.11), transparent 45%),
    radial-gradient(70% 50% at 0% 80%, rgba(239, 68, 68, 0.07), transparent 40%),
    var(--void);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 100%);
}

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

.container {
  width: min(1160px, 100% - 40px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ═ Splash ═ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.5s;
}

.splash--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.5s;
}

.splash--hide .splash-inner {
  transform: translateY(8px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.splash-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% -15%, rgba(220, 38, 38, 0.45) 0%, transparent 52%),
    radial-gradient(ellipse 75% 55% at 100% 85%, rgba(153, 27, 27, 0.35) 0%, transparent 48%),
    radial-gradient(ellipse 60% 50% at 0% 60%, rgba(80, 15, 20, 0.55) 0%, transparent 45%),
    linear-gradient(
      152deg,
      #030303 0%,
      #0a0404 22%,
      #1a0a0c 48%,
      #2d0e12 68%,
      #0d0808 88%,
      #000000 100%
    );
}

.splash-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.splash-blob--1 {
  --splash-blob-size: min(520px, 100%);
  width: var(--splash-blob-size);
  height: var(--splash-blob-size);
  top: -18%;
  left: 50%;
  margin-left: calc(var(--splash-blob-size) * -0.5);
  opacity: 0.55;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.5) 0%, rgba(127, 29, 29, 0.2) 45%, transparent 68%);
  animation: splash-blob-drift-a 11s ease-in-out infinite;
}

.splash-blob--2 {
  width: min(90%, 420px);
  height: min(90%, 420px);
  bottom: -22%;
  right: -12%;
  opacity: 0.5;
  background: radial-gradient(circle, rgba(69, 10, 14, 0.75) 0%, rgba(220, 38, 38, 0.22) 40%, transparent 70%);
  animation: splash-blob-drift-b 13s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes splash-blob-drift-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10px, 14px) scale(1.04);
  }
}

@keyframes splash-blob-drift-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-14px, 12px) scale(1.06);
  }
}

.splash-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(ellipse 85% 55% at 50% 35%, rgba(220, 38, 38, 0.08), transparent 62%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  mask-image: radial-gradient(ellipse 78% 72% at 50% 45%, #000 18%, transparent 82%);
}

.splash-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
  padding: 1.5rem;
  width: min(280px, 88vw);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.splash-logo {
  display: block;
  width: min(260px, 75vw);
  height: auto;
  max-height: min(150px, 28vh);
  margin: 0;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 0 28px rgba(220, 38, 38, 0.35))
    drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
  animation: splash-logo-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

@keyframes splash-logo-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.splash-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.splash-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, #7f1d1d, #ef4444 45%, #fca5a5);
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.55);
  animation: splash-bar 1.65s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

@keyframes splash-bar {
  0% {
    width: 0;
    opacity: 0.85;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

/* ═ Header ═ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 4, 10, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo-wrap {
  display: flex;
  line-height: 0;
}

.brand-logo {
  height: 38px;
  width: auto;
  max-width: min(168px, 46vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
}

.nav-shell a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-shell a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: var(--accent-mix);
  box-shadow: 0 4px 28px rgba(220, 38, 38, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(220, 38, 38, 0.45);
}

@media (max-width: 900px) {
  .nav-shell {
    display: none;
  }
}

/* ═ Hero ═ */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(2.5rem, 7vw, 4.5rem) 0;
  display: flex;
  align-items: center;
  overflow-x: clip;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.55;
}

.hero-blob--a {
  width: 420px;
  height: 420px;
  top: -8%;
  right: -5%;
  background: rgba(220, 38, 38, 0.28);
  animation: blob-a 16s ease-in-out infinite;
}

.hero-blob--b {
  width: 320px;
  height: 320px;
  bottom: 5%;
  left: -8%;
  background: rgba(127, 29, 29, 0.22);
  animation: blob-b 18s ease-in-out infinite;
}

.hero-blob--c {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 30%;
  background: rgba(248, 113, 113, 0.12);
  animation: blob-a 20s ease-in-out infinite reverse;
}

@keyframes blob-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 28px) scale(1.08);
  }
}

@keyframes blob-b {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(24px, -20px);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  min-width: 0;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.pill--accent {
  color: #fecaca;
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.1);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 3.85rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.title-gradient {
  background: var(--accent-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-gradient-soft {
  background: linear-gradient(135deg, #fff 28%, #f87171 72%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-gradient-cta {
  background: linear-gradient(135deg, #fef2f2, #fca5a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  font-weight: 500;
  color: rgba(244, 242, 250, 0.92);
  max-width: 38ch;
  margin-bottom: 0.65rem;
}

.hero-lead {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--accent-mix);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(220, 38, 38, 0.42);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-light {
  color: #1a0a14;
  background: linear-gradient(180deg, #fff 0%, #fee2e2 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.btn-light:hover {
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Mesma largura da foto (4:5 com até 520px de altura → 416px) + card alinhado */
.hero-visual-column {
  --hero-photo-w: min(100%, 416px);
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-visual-stack {
  position: relative;
  width: var(--hero-photo-w);
  max-width: 100%;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 520px;
  border: 1px solid var(--glass-border);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(220, 38, 38, 0.12);
}

.hero-photo-ring {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: var(--accent-mix);
  opacity: 0.45;
  z-index: 0;
  filter: blur(12px);
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-photo-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shine 4.5s ease-in-out infinite;
}

@keyframes shine {
  0%,
  100% {
    background-position: 130% 0;
  }
  50% {
    background-position: -30% 0;
  }
}

.hero-float {
  position: absolute;
  z-index: 3;
  padding: 0.55rem 1rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(10, 8, 18, 0.88);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-float span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  background: var(--accent-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-float--1 {
  top: 12%;
  left: -4%;
}

.hero-float--2 {
  bottom: 14%;
  right: -2%;
  max-width: 140px;
  text-align: center;
  line-height: 1.35;
}

/* Card abaixo da foto — mesma largura que o bloco da foto */
.hero-glass {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  width: var(--hero-photo-w);
  max-width: 100%;
  flex-shrink: 0;
}

.hero-glass-inner {
  padding: 0.95rem 1.1rem 1rem;
  border-radius: var(--radius);
  background: rgba(12, 10, 20, 0.92);
  border: 1px solid var(--glass-border);
  border-top: 2px solid rgba(220, 38, 38, 0.45);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.hero-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.8vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-stat-lbl {
  font-size: 0.7rem;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-stat-div {
  flex-shrink: 0;
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.hero-glass-note {
  font-size: 0.76rem;
  color: rgba(244, 242, 250, 0.68);
  line-height: 1.48;
  margin: 0;
}

/* Faixa de fotos */
.strip {
  position: relative;
  z-index: 1;
  padding: 0 0 3rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.strip-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0 1.5rem;
  animation: strip-scroll 24s linear infinite;
}

.strip-track:hover {
  animation-play-state: paused;
}

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

.strip-track img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

/* duplicate images for seamless loop - inject via CSS not possible - duplicate in HTML or use JS. Easier: duplicate strip content in HTML */

@media (max-width: 900px) {
  .strip-track img {
    width: 160px;
    height: 110px;
  }
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 11vw, 6rem) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f87171;
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
}

.glass-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* About */
.about {
  background: linear-gradient(180deg, transparent, rgba(18, 16, 28, 0.5));
}

.about-bento {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.about-main p {
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.about-main strong {
  color: var(--text);
}

.about-highlight {
  margin-top: 1.25rem !important;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  color: var(--text) !important;
  font-weight: 600;
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.about-mini h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.about-mini ul {
  list-style: none;
}

.about-mini li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.about-mini li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.5);
}

.about-deco {
  flex: 1;
  min-height: 80px;
  border-radius: var(--radius);
  background: radial-gradient(circle at 70% 30%, rgba(185, 28, 28, 0.18), transparent 60%), rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Bento serviços */
.services {
  background: var(--void);
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.bento-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-mix);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

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

/* Layout em anel: linha1 [wide2][s1][tall]; linha2 [s2][wide2cols][tall] */
.bento-card--span2 {
  grid-column: 1 / 3;
  grid-row: 1;
}

.bento > .bento-card:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.bento > .bento-card:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.bento-card--tall {
  grid-column: 4;
  grid-row: 1 / span 2;
}

.bento-card--wide {
  grid-column: 2 / 4;
  grid-row: 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  color: #fecaca;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.28);
}

.bento-icon svg {
  width: 24px;
  height: 24px;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.bento-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento > .bento-card:nth-child(2),
  .bento > .bento-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-card--span2,
  .bento-card--wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .bento-card--tall {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .bento {
    grid-template-columns: 1fr;
  }

  .bento > .bento-card:nth-child(2),
  .bento > .bento-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-card--span2,
  .bento-card--wide,
  .bento-card--tall {
    grid-column: span 1;
    grid-row: auto;
  }
}

/* Diferenciais */
.differential {
  background: linear-gradient(180deg, rgba(18, 16, 28, 0.4), transparent);
}

.diff-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.diff-card {
  grid-column: span 2;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.diff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.38);
}

.diff-card--feature {
  grid-column: span 4;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(127, 29, 29, 0.1));
  border-color: rgba(220, 38, 38, 0.25);
}

.diff-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.45rem;
}

.diff-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.diff-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .diff-card,
  .diff-card--feature {
    grid-column: span 6;
  }
}

/* Depoimentos */
.testimonials {
  background: linear-gradient(180deg, rgba(18, 16, 28, 0.25), transparent);
}

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

.testimonial-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--elevated);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.32);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
}

.testimonial-card img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  aspect-ratio: auto;
}

@media (max-width: 560px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Hipopressivo */
.hipopressive {
  background: var(--surface);
}

.hipo-split {
  display: grid;
  gap: 2.5rem;
}

.hipo-content {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}

.hipo-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.hipo-chips li {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.hipo-prose p {
  color: var(--muted);
  font-size: 0.92rem;
}

.hipo-aside p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hipo-content {
    grid-template-columns: 1fr;
  }
}

/* CTA */
.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(4rem, 12vw, 6rem) 0;
  border-top: 1px solid var(--border);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 90% at 50% 100%, rgba(220, 38, 38, 0.22), transparent 55%), #07050c;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}

.cta-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle, rgba(220, 38, 38, 0.22), transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.cta-text {
  color: rgba(244, 242, 250, 0.82);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: #040208;
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.75rem 0;
}

.footer-logo {
  display: block;
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.45));
}

.footer-meta {
  font-size: 0.875rem;
  color: var(--faint);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-label {
  display: inline-block;
  min-width: 5.5rem;
  color: var(--faint);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer-contact a {
  color: #fecaca;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-promo {
  text-align: center;
  padding: 1.75rem 0 2.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--faint);
  line-height: 1.65;
}

.footer-promo a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.65rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-promo a:hover {
  color: var(--text);
}

.footer-promo img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.85;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: wa-ring 2s ease-out infinite;
}

@keyframes wa-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Reveal */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 0;
    min-height: 360px;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-badges,
  .hero-actions {
    justify-content: center;
  }

  .hero-tagline,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-float--1 {
    left: 2%;
  }

  .hero-float--2 {
    right: 2%;
    bottom: 12%;
  }

  .about-bento {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .splash-blob--1,
  .splash-blob--2,
  .splash-bar-fill,
  .splash-logo,
  .hero-blob--a,
  .hero-blob--b,
  .hero-blob--c,
  .hero-photo-shine,
  .strip-track,
  .wa-pulse {
    animation: none !important;
  }

  .splash-logo {
    opacity: 1;
    transform: none;
  }

  .splash-bar-fill {
    width: 100%;
  }

  .strip-track {
    transform: none;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .testimonial-card:hover {
    transform: none;
  }
}
</think>


<｜tool▁calls▁begin｜><｜tool▁call▁begin｜>
StrReplace