/* ============================================
   RICO CLEAN – STYLE.CSS
   Higienização Profissional de Estofados
============================================ */

:root {
  --bg: #f8f9fc;
  --surface: #ffffff;
  --ink: #0d1117;
  --ink-light: #4a5568;
  --blue: #1a56e8;
  --blue-dark: #1040c0;
  --blue-light: #e8eeff;
  --green: #16a34a;
  --green-dark: #14532d;
  --green-light: #dcfce7;
  --accent: #f59e0b;
  --line: rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }

/* ============================================
   PROMO STRIP
============================================ */
.promo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 9px 20px;
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.promo-strip span { white-space: nowrap; }
.promo-strip i { color: var(--accent); margin-right: 5px; }

/* ============================================
   HEADER / NAV
============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s;
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.18s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.22s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.cta-nav:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}
.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); }

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.btn-primary:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.18s;
}
.btn-ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: auto;
  align-self: center;
  transition: 0.18s;
  box-shadow: 0 3px 10px rgba(37,211,102,0.2);
}
.btn-service:hover { background: #1ebe5a; transform: translateY(-1px); }

.btn-whatsapp-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  transition: 0.2s;
}
.btn-whatsapp-big:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}
.btn-whatsapp-big i { font-size: 1.3rem; }

/* ============================================
   EYEBROW
============================================ */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #060c18 0%, #0e1e3d 55%, #061428 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 45%, rgba(26,86,232,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 15% 75%, rgba(37,211,102,0.1) 0%, transparent 55%);
  pointer-events: none;
}
/* Subtle grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: #fcd34d;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeUp 0.5s ease both;
}

.hero-copy h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  color: white;
  margin-bottom: 20px;
  animation: fadeUp 0.55s 0.1s ease both;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy .hero-subtitle {
  color: #93c5fd;
  font-size: 1.15rem;
  font-weight: 700;
  max-width: 520px;
  margin-bottom: 14px;
  line-height: 1.5;
  animation: fadeUp 0.55s 0.15s ease both;
}
.hero-copy .hero-desc {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 24px;
  line-height: 1.75;
  animation: fadeUp 0.55s 0.2s ease both;
}

/* Relógio digital */
.live-clock {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 22px;
  margin-bottom: 28px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  box-shadow: inset 0 0 24px rgba(0,0,0,0.2), 0 8px 32px rgba(0,0,0,0.2);
  animation: fadeUp 0.55s 0.25s ease both;
  font-variant-numeric: tabular-nums;
}
.clock-time {
  font-family: "Barlow Condensed", monospace;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #4ade80;
  text-shadow: 0 0 20px rgba(74,222,128,0.35);
  line-height: 1;
}
.clock-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.clock-day { text-transform: capitalize; }
.clock-date { color: rgba(255,255,255,0.55); }
.clock-date::before {
  content: "·";
  margin-right: 10px;
  color: rgba(255,255,255,0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
  animation: fadeUp 0.55s 0.3s ease both;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeUp 0.55s 0.4s ease both;
}
.hero-trust div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.86rem;
  font-weight: 600;
}
.hero-trust i { color: var(--accent); font-size: 0.9rem; }

/* Hero Media */
.hero-media {
  position: relative;
  animation: fadeUp 0.65s 0.2s ease both;
}

.hero-video-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), var(--shadow-lg);
  aspect-ratio: 9/11;
  background: #0a0a0a;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.65);
  color: white;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
}
.video-overlay-badge i { color: #4ade80; font-size: 1rem; }

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  z-index: 3;
  animation: floatCard 3s ease-in-out infinite;
}
.hero-floating-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
}
.hero-floating-card strong { display: block; font-size: 0.86rem; font-weight: 800; color: var(--ink); }
.hero-floating-card span { display: block; font-size: 0.72rem; color: var(--ink-light); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Hero Wave */
.hero-wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: -2px;
}
.hero-wave svg {
  width: 100%;
  height: 70px;
}

/* ============================================
   BENEFITS BAR
============================================ */
.benefits-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.benefits-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  transition: background 0.18s;
}
.benefit-item:last-child { border-right: none; }
.benefit-item:hover { background: var(--bg); }
.benefit-item i {
  font-size: 1.3rem;
  color: var(--blue);
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--blue-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.benefit-item strong { display: block; font-weight: 800; font-size: 0.9rem; }
.benefit-item span { display: block; font-size: 0.78rem; color: var(--ink-light); }

/* ============================================
   SECTION HELPERS
============================================ */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 14px;
}
.section-head.light h2 { color: white; }
.section-head.light p { color: rgba(255,255,255,0.65); }
.section-head.light .eyebrow { background: rgba(255,255,255,0.1); color: #93c5fd; border: 1px solid rgba(255,255,255,0.18); }
.section-head p { color: var(--ink-light); max-width: 520px; margin: 0 auto; }

/* ============================================
   ANUNCIO DESTAQUE
============================================ */
.anuncio-section {
  padding: 80px 0;
  background: var(--bg);
}
.anuncio-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.anuncio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}
.anuncio-copy {
  padding: 48px 48px 48px 0;
}
.anuncio-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}
.anuncio-copy > p {
  color: var(--ink-light);
  margin-bottom: 24px;
  line-height: 1.7;
}
.anuncio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.anuncio-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.anuncio-list li i { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }

/* ============================================
   SERVICES
============================================ */
/* Selo Anvisa */
.trust-seal-section {
  padding: 0 0 48px;
  margin-top: -8px;
  background: linear-gradient(180deg, #0e1e3d 0%, var(--bg) 100%);
}
.trust-seal {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: var(--surface);
  border: 2px solid var(--blue-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  animation: fadeUp 0.5s ease both;
}
.trust-seal-icon {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}
.trust-seal-badge {
  position: absolute;
  bottom: -4px;
  right: -6px;
  font-size: 0.62rem;
  font-weight: 800;
  background: var(--green);
  color: white;
  padding: 3px 7px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.trust-seal-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-seal-copy strong {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.4;
}
.trust-seal-copy span {
  font-size: 0.88rem;
  color: var(--muted);
}

.services-section {
  padding: 88px 0;
  background: var(--bg);
}

.services-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.service-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.service-tile-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
  color: var(--blue);
  border-radius: 16px;
  font-size: 1.5rem;
  transition: transform 0.25s ease;
}
.service-tile:hover .service-tile-icon { transform: scale(1.08); }
.service-tile h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-tile p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  justify-items: center;
}
/* featured card ocupa linha inteira no topo */
.service-card.featured {
  grid-column: 1 / -1;
}
@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card.featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
  width: 100%;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.service-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 0 0 4px var(--blue-light), var(--shadow-md);
}
.service-card.featured:hover {
  box-shadow: 0 0 0 4px var(--blue-light), var(--shadow-lg);
  transform: translateY(-6px);
}

/* Card largo (tapete) — imagem à esquerda, conteúdo à direita */
.service-card-wide {
  grid-column: span 2;
  flex-direction: row;
}
.service-card-wide .service-img {
  width: 45%;
  flex-shrink: 0;
}
.service-card-wide .service-img .img-antes {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
}
.service-card-wide .service-body {
  flex: 1;
  justify-content: center;
}
/* Mobile: volta ao layout vertical */
@media (max-width: 700px) {
  .service-card-wide {
    grid-column: auto;
    flex-direction: column;
  }
  .service-card-wide .service-img {
    width: 100%;
  }
  .service-card-wide .service-img .img-antes {
    height: 200px;
  }
}

.service-img {
  position: relative;
  overflow: hidden;
  background: #e8eaed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: linear-gradient(160deg, #e8f4fc, #dbeafe);
}
.service-icon-large {
  font-size: 4rem;
  color: var(--blue);
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.service-img .img-antes {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
.service-img .img-depois {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* Efeito antes/depois apenas no card de sofá (featured) */
.service-card.featured:hover .img-antes { opacity: 0; transform: scale(1.04); }
.service-card.featured:hover .img-depois { opacity: 1; }

/* Demais cards: imagem fixa, sem desaparecer — apenas leve zoom */
.service-card:not(.featured) .img-antes {
  transition: transform 0.5s ease;
  opacity: 1 !important;
}
.service-card:not(.featured):hover .img-antes { transform: scale(1.04); }

.service-compare-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.68);
  color: white;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.12);
}
.service-compare-label i { color: #93c5fd; font-size: 0.65rem; }

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.service-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  align-items: center;
  text-align: center;
  width: 100%;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--blue);
  margin: 0 auto;
}
.service-body h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}
.service-body > p { color: var(--ink-light); font-size: 0.88rem; line-height: 1.6; }
.service-body ul { list-style: none; display: flex; flex-direction: column; gap: 7px; align-items: center; }
.service-body ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ink-light);
  justify-content: center;
}
.service-body ul li i { color: var(--green); font-size: 0.72rem; flex-shrink: 0; }

/* ============================================
   BEFORE & AFTER
============================================ */
.before-after-section {
  background: linear-gradient(135deg, #060c18 0%, #0e1e3d 100%);
  padding: 88px 0;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.ba-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  transition: background 0.2s;
}
.ba-card:hover { background: rgba(255,255,255,0.08); }

.ba-images {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.ba-img-wrap {
  position: relative;
  flex: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.ba-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s;
}
.ba-card:hover .ba-img-wrap img { transform: scale(1.03); }

.ba-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ba-tag.antes { background: #ef4444; color: white; }
.ba-tag.depois { background: #22c55e; color: white; }

.ba-arrow {
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ba-card > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.84rem;
  text-align: center;
}

/* Video Feature */
.video-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 48px;
}
.video-feature-copy .eyebrow {
  background: rgba(255,255,255,0.1);
  color: #93c5fd;
  border: 1px solid rgba(255,255,255,0.15);
}
.video-feature-copy h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.05;
}
.video-feature-copy p { color: rgba(255,255,255,0.6); margin-bottom: 28px; line-height: 1.75; }

.feature-video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-feature-media .feature-video,
.video-frame .showcase-video {
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

/* Seção de vídeos */
.videos-section {
  padding: 88px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 16px 0 8px;
  color: var(--ink);
}
.video-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.video-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--blue-light);
  background: #0f172a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover .video-frame {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(37,99,235,0.2);
}
.showcase-video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}
.video-frame-empty {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  border-style: dashed;
  border-color: rgba(255,255,255,0.2);
  background: linear-gradient(145deg, #1e293b, #0f172a);
}
.video-frame-empty i { font-size: 2.5rem; color: var(--blue); opacity: 0.7; }
.video-frame-empty span { font-size: 0.9rem; font-weight: 600; }

/* Produtos */
.produtos-section {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #f0f7ff 100%);
}
.produtos-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 36px;
  align-items: start;
}
.produtos-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.produto-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.produto-highlight:hover {
  transform: translateX(4px);
  border-color: var(--blue-light);
}
.produto-highlight i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 12px;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.produto-highlight strong {
  font-size: 0.95rem;
  color: var(--ink);
}
.produtos-benefits {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.produtos-benefits h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--ink);
}
.produtos-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.produtos-benefits-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: var(--green);
  border-radius: 10px;
  font-size: 1rem;
}
.produtos-benefits-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.produtos-benefits-list strong {
  font-size: 0.95rem;
  color: var(--ink);
}
.produtos-benefits-list span {
  font-size: 0.82rem;
  color: var(--muted);
}
.produtos-visual {
  position: relative;
  text-align: center;
}
.produtos-visual img {
  width: 100%;
  max-width: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  animation: floatY 4s ease-in-out infinite;
}
.produtos-anvisa-badge {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--blue);
  color: white;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.produtos-anvisa-badge i { font-size: 1.1rem; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   HOW IT WORKS
============================================ */
.how-section {
  padding: 88px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}
.step {
  text-align: center;
  padding: 28px 18px;
}
.step-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 10px;
}
.step-icon {
  width: 58px;
  height: 58px;
  background: var(--blue);
  color: white;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(26,86,232,0.28);
}
.step h4 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 0.83rem; color: var(--ink-light); line-height: 1.6; }
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  color: #cbd5e1;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
  background: linear-gradient(135deg, #060c18 0%, #111827 100%);
  padding: 88px 0;
}
.testimonials-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: -28px auto 44px;
  flex-wrap: wrap;
}
.testimonials-rating .rating-score {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.testimonials-rating .rating-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.testimonials-rating .rating-meta > span {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  font-weight: 600;
}
.testimonials-rating .stars { margin-bottom: 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}
.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: white;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: var(--shadow-md);
}
.btn-google-reviews:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-google-reviews i { color: #4285f4; font-size: 1.1rem; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: background 0.2s, transform 0.22s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}
.stars { margin-bottom: 14px; color: var(--accent); display: flex; gap: 3px; font-size: 0.88rem; }
.testimonial-card > p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: white; font-size: 0.88rem; font-weight: 700; }
.testimonial-date {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.76rem;
  margin-top: 2px;
}
.testimonial-source {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.38);
  font-size: 0.72rem;
  margin-top: 4px;
}
.testimonial-source i { color: #93c5fd; font-size: 0.78rem; }

/* ============================================
   CTA SECTION
============================================ */
.cta-section { padding: 80px 24px; }
.cta-inner {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a56e8 0%, #0e38b0 100%);
  border-radius: 24px;
  padding: 52px 52px 52px 44px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 20px 60px rgba(26,86,232,0.28);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -30px; left: 200px;
  width: 140px; height: 140px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-mascot {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
  position: relative;
  z-index: 1;
  animation: floatCard 3s ease-in-out infinite;
}
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 10px;
}
.cta-copy > p { color: rgba(255,255,255,0.7); margin-bottom: 26px; font-size: 0.95rem; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #070b14;
  color: rgba(255,255,255,0.8);
  padding: 70px 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.4) contrast(1.1);
  margin-bottom: 18px;
}
.footer-brand > p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: 0.18s;
  border: 1px solid rgba(255,255,255,0.07);
}
.footer-social a:hover { background: var(--blue); color: white; border-color: var(--blue); }

.footer-links h4,
.footer-contact h4 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.18s;
}
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-links a i, .footer-contact a i {
  color: var(--blue);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.copyright { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.dev-credit { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.dev-credit a { color: rgba(255,255,255,0.65); font-weight: 700; }
.dev-credit a:hover { color: white; }

/* ============================================
   FLOATING WHATSAPP
============================================ */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  transition: 0.2s;
}
.floating-whatsapp i { font-size: 1.25rem; }
.floating-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.5);
}

/* ============================================
   TOAST
============================================ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  z-index: 999;
  max-width: min(90vw, 440px);
  padding: 12px 24px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  border-radius: 999px;
  font-size: 0.88rem;
  transform: translate(-50%, 100px);
  transition: transform 0.24s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.toast.show { transform: translate(-50%, 0); }

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-badge,
  .hero-copy h1,
  .hero-copy > p,
  .hero-actions,
  .hero-trust,
  .hero-media,
  .hero-floating-card,
  .cta-mascot {
    animation: none;
  }
  .revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================
   RESPONSIVE – 1024px
============================================ */
@media (max-width: 1024px) {
  .services-overview { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: 1 / -1; grid-row: auto; }
  .service-card.featured .service-img .img-antes { height: 260px; }
  .videos-grid { grid-template-columns: 1fr 1fr; }
  .produtos-layout { grid-template-columns: 1fr; }
  .produtos-visual { order: -1; }
  .trust-seal { flex-wrap: wrap; }

  .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .step-arrow { display: none; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE – 860px
============================================ */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 70px 24px 40px;
    gap: 44px;
  }
  .hero-media { padding-bottom: 28px; }
  .hero-video-wrap { aspect-ratio: 4/3; }
  .hero-floating-card { bottom: -14px; right: 0; }

  .benefits-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  .benefit-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .benefit-item { border-right: none; border-bottom: 1px solid var(--line); }
  .benefit-item:last-child, .benefit-item:nth-last-child(2) { border-bottom: none; }

  .anuncio-card { grid-template-columns: 1fr; }
  .anuncio-card img { min-height: 280px; }
  .anuncio-copy { padding: 32px; }

  .ba-grid { grid-template-columns: 1fr; }
  .video-feature { grid-template-columns: 1fr; padding: 32px; gap: 32px; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .testimonials-rating .rating-score { font-size: 2.8rem; }

  .cta-inner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-mascot { width: 80px; height: 80px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
}

/* ============================================
   RESPONSIVE – 640px
============================================ */
@media (max-width: 640px) {
  .promo-strip { gap: 8px; font-size: 0.72rem; justify-content: flex-start; padding: 8px 16px; }
  .promo-strip span:nth-child(3) { display: none; }

  .nav-links { display: none; }
  .cta-nav { display: none; }
  .hamburger { display: flex; }

  .hero-copy h1 { font-size: 2.8rem; }
  .hero-floating-card { display: none; }

  .benefits-bar-inner { grid-template-columns: 1fr; }
  .benefit-item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .benefit-item:last-child { border-bottom: none; }

  .services-overview { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: auto; grid-row: auto; }
  .service-img .img-antes { height: 200px; }
  .videos-grid { grid-template-columns: 1fr; }
  .showcase-video { aspect-ratio: 4/3; }
  .hero-video-wrap { aspect-ratio: 3/2; }
  .produtos-layout { grid-template-columns: 1fr; }
  .trust-seal { padding: 20px; gap: 16px; }
  .clock-date::before { display: none; }
  .clock-meta { flex-direction: column; gap: 4px; }

  .steps-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .ba-images { flex-direction: column; }
  .ba-arrow { transform: rotate(90deg); }

  .floating-whatsapp span { display: none; }
  .floating-whatsapp { padding: 14px; border-radius: 50%; right: 18px; bottom: 20px; }
  .floating-whatsapp i { font-size: 1.4rem; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Mobile Nav Open */
@media (max-width: 640px) {
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    z-index: 99;
    gap: 16px;
    animation: fadeUp 0.2s ease;
  }
  .nav { position: relative; }
}
 
/* ============================================
   ENHANCED PRODUTOS SECTION – Highlight upgrade
============================================ */
.produtos-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #f0f7ff 0%, #e8f4ff 50%, #f5f0ff 100%);
  position: relative;
}
.produtos-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #6366f1, var(--green));
}
.produtos-section .section-head h2 {
  background: linear-gradient(135deg, var(--blue), #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Produto highlight hover glow */
.produto-highlight {
  background: white;
  border: 1.5px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 4px 16px rgba(26,86,232,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.produto-highlight:hover {
  transform: translateX(6px) translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,86,232,0.13);
  border-color: var(--blue-light);
}

/* Benefit icon pulse on hover */
.produtos-benefits-list li:hover .benefit-icon {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* Anvisa badge shimmer */
.produtos-anvisa-badge {
  animation: badgeShimmer 3s ease-in-out infinite;
}
@keyframes badgeShimmer {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,99,235,0.3); }
  50% { box-shadow: 0 8px 36px rgba(37,99,235,0.55); }
}

/* Trust seal enhanced */
.trust-seal {
  background: linear-gradient(135deg, #fff 60%, #f0f7ff 100%);
  border: 2px solid var(--blue-light);
  position: relative;
  overflow: hidden;
}
.trust-seal::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(26,86,232,0.06) 0%, transparent 70%);
  pointer-events: none;
}
/* ============================================
   HERO PREMIUM – Rico Clean (Logo 3D)
   Editável: todos os textos marcados com EDITÁVEL
============================================ */

.hero-premium {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(145deg,
    #040b1a 0%,
    #071530 30%,
    #0b1f45 60%,
    #071228 100%
  );
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Fundo: textura de grade sutil ── */
.hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  z-index: 0;
}

/* ── Fundo: aurora de luz azul/prata ── */
.hero-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 80% 40%, rgba(100,140,220,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(180,200,240,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 50% 10%,  rgba(120,160,255,0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── Partículas flutuantes ── */
.hp-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hp-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,190,255,0.55), transparent 70%);
  animation: hpFloat linear infinite;
}
.hp-p1 { width: 6px;  height: 6px;  top: 15%; left: 12%; animation-duration: 8s;  animation-delay: 0s; }
.hp-p2 { width: 4px;  height: 4px;  top: 60%; left: 8%;  animation-duration: 11s; animation-delay: 1.5s; }
.hp-p3 { width: 8px;  height: 8px;  top: 30%; left: 88%; animation-duration: 9s;  animation-delay: 0.8s; }
.hp-p4 { width: 5px;  height: 5px;  top: 75%; left: 78%; animation-duration: 13s; animation-delay: 2s; }
.hp-p5 { width: 3px;  height: 3px;  top: 50%; left: 55%; animation-duration: 7s;  animation-delay: 3s; }
.hp-p6 { width: 7px;  height: 7px;  top: 85%; left: 35%; animation-duration: 10s; animation-delay: 0.3s; }
@keyframes hpFloat {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(-80px) scale(0.5); opacity: 0; }
}

/* ── Linhas de luz ── */
.hp-light-lines { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.hp-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(150,180,255,0.3), transparent);
  animation: hpLinePulse ease-in-out infinite;
}
.hp-line1 { height: 60%;  left: 25%; top: 5%;  animation-duration: 5s;  animation-delay: 0s; }
.hp-line2 { height: 45%;  left: 65%; top: 20%; animation-duration: 7s;  animation-delay: 1.5s; }
.hp-line3 { height: 55%;  left: 80%; top: 10%; animation-duration: 6s;  animation-delay: 0.7s; }
@keyframes hpLinePulse {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}

/* ── Layout principal ── */
.hp-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 24px 40px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Logo 3D ── */
.hp-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hpLogoIn 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes hpLogoIn {
  from { opacity: 0; transform: scale(0.75) rotate(-6deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Brilho por trás do logo */
.hp-logo-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(120,160,255,0.28) 0%,
    rgba(80,120,220,0.15) 40%,
    transparent 70%
  );
  animation: hpGlowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hpGlowPulse {
  0%, 100% { transform: scale(1);    opacity: 0.8; }
  50%       { transform: scale(1.12); opacity: 1;   }
}

.hp-logo-img {
  width: clamp(260px, 28vw, 360px);
  height: clamp(260px, 28vw, 360px);
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 2;
  object-fit: cover;
  object-position: center center;
  filter: drop-shadow(0 0 40px rgba(100,140,220,0.45)) drop-shadow(0 20px 60px rgba(0,0,0,0.6));
  animation: hpLogoFloat 5s ease-in-out infinite;
}
@keyframes hpLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Anéis orbitais */
.hp-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(140,180,255,0.18);
  pointer-events: none;
}
.hp-ring1 {
  width: calc(clamp(260px, 28vw, 360px) + 60px);
  height: calc(clamp(260px, 28vw, 360px) + 60px);
  animation: hpRingSpin 18s linear infinite;
}
.hp-ring2 {
  width: calc(clamp(260px, 28vw, 360px) + 120px);
  height: calc(clamp(260px, 28vw, 360px) + 120px);
  border-color: rgba(140,180,255,0.09);
  animation: hpRingSpin 30s linear infinite reverse;
}
/* marcador no anel */
.hp-ring1::after, .hp-ring2::after {
  content: '';
  position: absolute;
  width: 7px; height: 7px;
  background: rgba(160,200,255,0.7);
  border-radius: 50%;
  top: -3.5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(160,200,255,0.8);
}
@keyframes hpRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Conteúdo textual ── */
.hp-content {
  animation: hpContentIn 0.8s 0.2s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes hpContentIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Badge */
.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.28);
  color: #fcd34d;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hp-badge i { font-size: 0.85rem; }

/* Título */
.hp-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hp-title em {
  font-style: normal;
  background: linear-gradient(135deg, #a8c8ff 0%, #d0e4ff 50%, #7eb8f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(140,190,255,0.4));
}

/* Subtítulo */
.hp-subtitle {
  color: rgba(200,218,255,0.78);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Diferenciais */
.hp-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hp-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(210,228,255,0.85);
  font-size: 0.84rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hp-feat:hover {
  background: rgba(140,180,255,0.12);
  border-color: rgba(140,180,255,0.3);
  transform: translateY(-2px);
}
.hp-feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(140,180,255,0.15);
  border-radius: 7px;
  color: #93c5fd;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Botões */
.hp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: white;
  font-weight: 800;
  font-size: 0.97rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  letter-spacing: 0.01em;
}
.hp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55), 0 4px 14px rgba(0,0,0,0.25);
  filter: brightness(1.06);
}
.hp-btn-primary i { font-size: 1.15rem; }

.hp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 26px;
  background: rgba(255,255,255,0.06);
  color: rgba(220,232,255,0.9);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.hp-btn-ghost:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}
.hp-btn-ghost i { font-size: 0.8rem; opacity: 0.7; }

/* Trust bar */
.hp-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hp-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: rgba(200,215,255,0.65);
}
.hp-trust-item i { color: #fcd34d; font-size: 0.85rem; }
.hp-trust-item strong { color: rgba(220,235,255,0.9); font-weight: 800; margin-right: 2px; }
.hp-trust-sep { color: rgba(255,255,255,0.2); font-size: 1.2rem; }

/* Wave */
.hp-wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: -2px;
}
.hp-wave svg { width: 100%; height: 80px; display: block; }

/* ── Responsivo ── */
@media (max-width: 900px) {
  .hp-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding: 70px 20px 30px;
  }
  .hp-logo-wrap { justify-content: center; order: -1; }
  .hp-logo-img { width: clamp(200px, 55vw, 280px); height: clamp(200px, 55vw, 280px); }
  .hp-ring1 { width: calc(clamp(200px, 55vw, 280px) + 50px); height: calc(clamp(200px, 55vw, 280px) + 50px); }
  .hp-ring2 { width: calc(clamp(200px, 55vw, 280px) + 100px); height: calc(clamp(200px, 55vw, 280px) + 100px); }
  .hp-logo-glow { width: 280px; height: 280px; }
  .hp-features  { justify-content: center; }
  .hp-actions   { justify-content: center; }
  .hp-trust     { justify-content: center; }
  .hp-subtitle  { margin-inline: auto; }
}

@media (max-width: 480px) {
  .hp-title { font-size: 2.2rem; }
  .hp-btn-primary, .hp-btn-ghost { width: 100%; justify-content: center; }
  .hp-trust-sep { display: none; }
  .hp-trust { flex-direction: column; align-items: center; gap: 8px; }
}

/* Texto institucional – Hero Premium */
.hp-about {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 3px solid rgba(140,180,255,0.5);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.hp-about p {
  color: rgba(210,228,255,0.78);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
}
.hp-about p strong {
  color: rgba(220,238,255,0.95);
  font-weight: 700;
}
@media (max-width: 900px) {
  .hp-about { text-align: left; }
}