/* ══════════════════════════════════
   HERO E BACKGROUND DE ESTRELAS
══════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  overflow: hidden;
  background-color: #0b0c10;
}

.stars-bg,
.stars-bg2 {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 0;
  pointer-events: none;
}

.stars-bg {
  background: transparent url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="30" r="1.5" fill="white" opacity="0.8"/><circle cx="150" cy="80" r="1" fill="white" opacity="0.4"/><circle cx="80" cy="160" r="2" fill="white" opacity="0.6"/><circle cx="190" cy="180" r="1.2" fill="white" opacity="0.9"/></svg>') repeat;
  opacity: 0.8;
}

.stars-bg2 {
  background: transparent url('data:image/svg+xml;utf8,<svg width="350" height="350" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="150" r="1" fill="white" opacity="0.7"/><circle cx="280" cy="50" r="2" fill="white" opacity="0.5"/><circle cx="150" cy="300" r="1.5" fill="white" opacity="0.8"/><circle cx="320" cy="220" r="1" fill="white" opacity="0.6"/></svg>') repeat;
  opacity: 0.5;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(234, 230, 223, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(196, 192, 182, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(234, 230, 223, 0.08);
  border: 1px solid rgba(234, 230, 223, 0.2);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  max-width: 860px;
  margin: 0 auto 1.5rem;
}

h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text2);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.hero-platforms {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.platforms-title {
  color: var(--text3);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
}

.platforms-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 0.8rem 1.6rem;
  border-radius: 60px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: floatPlatform 4s ease-in-out infinite alternate;
}

.platform-badge:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.platform-badge.meta-badge {
  animation-delay: 0s;
}

.platform-badge.google-badge {
  animation-delay: -2s;
}

.platform-badge img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.platform-badge.meta-badge img {
  filter: brightness(0) invert(1);
}

@keyframes floatPlatform {
  0% {
    transform: translateY(6px);
  }

  100% {
    transform: translateY(-6px);
  }
}

/* ── BACKGROUND VIDEO CROSSFADE (SEÇÃO CONTEXTO) ── */
.video-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  /* Visivel permanentemente */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 16, 0.8);
  /* Camada escura para legibilidade */
  z-index: 1;
}

@media (max-width: 768px) {
  .video-overlay {
    background: rgba(11, 12, 16, 0.92);
    /* Ainda mais escuro no mobile */
  }
}

/* Animations 3 Cenas (Removido para performance, mantendo video único) */


/* ══════════════════════════════════
   SEÇÃO: PROBLEMA
══════════════════════════════════ */
.problema-section {
  background: var(--bg2);
}

.problema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.problema-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(173, 128, 167, 0.5);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.problema-card:hover {
  border-left-color: #AD80A7;
  transform: translateX(4px);
  background: rgba(173, 128, 167, 0.04);
}

.problema-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.problema-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.problema-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.problema-text span {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.5;
}

.problema-conclusao {
  text-align: center;
  padding: 4rem 2rem 2.5rem;
  border: 1px solid var(--border);
  background: rgba(15, 15, 18, 0.85);
  /* Fundo bem escuro */
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.problema-conclusao-pre {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.problema-conclusao-destaque {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.25;
  background: linear-gradient(135deg, #AD80A7 20%, #ccacc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  padding-bottom: 0.15em;
}



.problema-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.problema-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.slide.slide-2 {
  animation: crossfade 8s infinite;
}

@keyframes crossfade {

  0%,
  40% {
    opacity: 0;
  }

  50%,
  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.problema-img-wrapper:hover .slide img {
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.slide-overlay h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, transparent);
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* ── Dashboard Preview ── */
.dashboard-preview {
  position: relative;
  margin: 3rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1100px;
  background: #1C1E26;
}

.dashboard-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.mask-bl {
  position: absolute;
  left: 0;
  bottom: 1%;
  width: 16%;
  height: 12%;
  background: rgba(27, 28, 33, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mask-tr {
  position: absolute;
  right: 2%;
  top: 3%;
  width: 16%;
  height: 6%;
  background: rgba(30, 33, 41, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e4e6eb;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
}

/* ── Pain Cards ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

article.pain-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}

article.pain-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pain-icon {
  width: 44px;
  height: 44px;
  background: rgba(234, 230, 223, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

article.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

article.pain-card p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
}

/* ══════════════════════════════════
   SEÇÃO: METODOLOGIA
══════════════════════════════════ */
#metodologia {
  background: var(--bg);
}

.metod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

ol.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

ol.steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent2), transparent);
  opacity: 0.3;
}

ol.steps li {
  display: flex;
  gap: 1.5rem;
  padding: 1.6rem;
  border-radius: var(--radius);
  transition: background 0.3s;
  position: relative;
}

ol.steps li:hover {
  background: rgba(255, 255, 255, 0.025);
}

.step-num {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--bg);
  box-shadow: 0 0 20px var(--accent-glow);
  position: relative;
  z-index: 1;
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--text2);
}

/* ══════════════════════════════════
   SEÇÃO: SERVIÇOS
══════════════════════════════════ */
#servicos {
  background: var(--bg2);
}

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

article.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

article.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #fff);
  opacity: 0;
  transition: opacity 0.3s;
}

article.service-card:hover {
  border-color: rgba(234, 230, 223, 0.3);
  transform: translateY(-4px);
}

article.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  display: block;
}

article.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

article.service-card p {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.7;
}

/* ══════════════════════════════════
   SEÇÃO: SITES CARROSSEL (Marquee)
══════════════════════════════════ */
.sites-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* Fade linear nas bordas para misturar com o fundo escuro */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  margin-top: 3rem;
  display: flex;
}

.sites-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  animation: scrollMarquee 45s linear infinite;
}

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

.site-card {
  width: 250px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.site-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

/* ── MOCKUPS DE SITES INTERNOS ── */
.mock {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.mock-header {
  height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px;
  font-size: 8px;
}

.mock-logo {
  font-size: 11px;
  font-weight: 900;
}

.mock-menu {
  display: flex;
  gap: 4px;
  flex-direction: column;
}

.mock-menu span {
  width: 14px;
  height: 2px;
  border-radius: 2px;
}

.mock-hero {
  flex: 1;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mock-hero h4 {
  font-size: 18px;
  line-height: 1.15;
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.mock-hero p {
  font-size: 11px;
  line-height: 1.45;
  margin-bottom: 16px;
  opacity: 0.85;
}

.mock-btn {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  font-size: 9px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
}

.mock-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* Temas dos Mini-sites */
.mock.odonto {
  background: #F8FAFC;
  color: #0F172A;
}

.mock.odonto .mock-header {
  border-bottom: 1px solid #E2E8F0;
}

.mock.odonto .mock-logo {
  color: #0284C7;
}

.mock.odonto .mock-menu span {
  background: #94A3B8;
}

.mock.odonto h4 {
  color: #0F172A;
}

.mock.odonto .mock-btn {
  background: #0284C7;
  color: #fff;
  border-radius: 24px;
}

.mock.barber {
  background: #111;
  color: #fff;
}

.mock.barber .mock-logo {
  color: #D4AF37;
  font-family: serif;
  font-style: italic;
}

.mock.barber .mock-menu span {
  background: #D4AF37;
}

.mock.barber .mock-btn {
  background: #D4AF37;
  color: #000;
  border-radius: 2px;
}

.mock.lawyer {
  background: #1E293B;
  color: #F8FAFC;
  border-top: 4px solid #94A3B8;
}

.mock.lawyer .mock-logo {
  color: #F1F5F9;
  font-family: serif;
}

.mock.lawyer .mock-menu span {
  background: #64748B;
}

.mock.lawyer .mock-btn {
  background: #F1F5F9;
  color: #1E293B;
}

.mock.arqui {
  background: #FAFAFA;
  color: #111;
}

.mock.arqui .mock-header {
  border-bottom: 1px solid #ddd;
}

.mock.arqui .mock-logo {
  font-weight: 300;
  letter-spacing: 2px;
}

.mock.arqui .mock-menu span {
  background: #111;
  height: 1px;
}

.mock.arqui .mock-btn {
  background: #111;
  color: #fff;
  border-radius: 0;
}

.mock.food {
  background: #1A1A1A;
  color: #fff;
}

.mock.food .mock-logo {
  color: #E11D48;
  font-weight: 900;
  text-transform: uppercase;
}

.mock.food .mock-menu span {
  background: #E11D48;
}

.mock.food .mock-btn {
  background: #E11D48;
  color: #fff;
  border-radius: 8px;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

/* ══════════════════════════════════
   SEÇÃO: VENDAS (Background Inteligência)
══════════════════════════════════ */
.vendas-bg {
  position: relative;
  background-image: url('../FOTOS/cyborg-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.vendas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg2) 0%, rgba(37, 37, 37, 0.75) 40%, var(--bg) 100%);
  z-index: 0;
}

.relative-z {
  position: relative;
  z-index: 1;
}

.two-cards {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.dark-card {
  background: rgba(29, 29, 29, 0.65) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dark-card h3 {
  color: #fff;
}

.dark-card p {
  color: #ccc;
}

/* ══════════════════════════════════
   SEÇÃO: PÚBLICO-ALVO
══════════════════════════════════ */
#publico {
  background: var(--bg);
}

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

article.audience-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

article.audience-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.audience-emoji {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

article.audience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

article.audience-card p {
  font-size: 0.875rem;
  color: var(--text2);
}

/* ══════════════════════════════════
   SEÇÃO: DIFERENCIAIS
══════════════════════════════════ */
#diferenciais {
  background: var(--bg2);
}

.diff-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

ul.diff-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

ul.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg3);
  transition: border-color 0.3s;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

ul.diff-list li:hover {
  border-color: rgba(234, 230, 223, 0.35);
}

.diff-check {
  width: 20px;
  height: 20px;
  background: rgba(234, 230, 223, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 900;
  margin-top: 1px;
}

/* ══════════════════════════════════
   SEÇÃO: FAQ
══════════════════════════════════ */
#faq {
  background: var(--bg);
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 760px;
}

details.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

details.faq-item[open] {
  border-color: rgba(234, 230, 223, 0.3);
}

details.faq-item summary {
  padding: 1.4rem 1.75rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

details.faq-item summary h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(234, 230, 223, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.3s;
}

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

.faq-answer {
  padding: 0 1.75rem 1.4rem;
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.75;
}

/* ══════════════════════════════════
   SEÇÃO: CTA FINAL
══════════════════════════════════ */
#cta {
  background: var(--bg);
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(135deg, rgba(234, 230, 223, 0.08), rgba(234, 230, 223, 0.03));
  border: 1px solid rgba(234, 230, 223, 0.15);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(234, 230, 223, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
  position: relative;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text2);
  margin-bottom: 2.5rem;
  position: relative;
}

.cta-note {
  margin-top: 1.25rem !important;
  font-size: 0.8rem !important;
  color: var(--text3) !important;
  margin-bottom: 0 !important;
}

/* ══════════════════════════════════
   RESPONSIVO — INDEX ESPECÍFICO
══════════════════════════════════ */
@media (max-width: 900px) {

  .metod-grid,
  .diff-layout,
  .problema-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  #hero {
    padding: 100px 5% 60px;
  }

  .platforms-grid {
    gap: 1rem;
    flex-direction: column;
  }

  ol.steps::before {
    left: 20px;
  }

  .step-num {
    width: 44px;
    height: 44px;
    font-size: 0.875rem;
  }

  ul.diff-list {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 3rem 1.5rem;
  }

  .slide-overlay {
    width: 90%;
    padding: 1rem;
  }

  .slide-overlay h4 {
    font-size: 1rem;
  }

  .slide-caption {
    font-size: 0.8rem;
    padding: 2rem 1rem 1rem;
  }

  .mask-bl {
    width: 30%;
    height: 10%;
    bottom: 2%;
  }

  .mask-tr {
    width: 30%;
    font-size: 0.6rem;
    height: 5%;
    top: 2%;
  }
}

/* ══════════════════════════════════
   STORYTELLING — HERO ANIMATION
══════════════════════════════════ */
.btn-skip {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  margin-top: 3rem;
}

.btn-skip:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

#hero-story {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: opacity 1s, visibility 1s;
}

#hero-story.hidden {
  opacity: 0;
  visibility: hidden;
}

.laptop {
  width: 75%;
  max-width: 480px;
  perspective: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(20px);
  animation: floatLaptop 4s ease-in-out infinite alternate;
}

@keyframes floatLaptop {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.laptop-screen {
  width: 100%;
  aspect-ratio: 16/9;
  background: #fff;
  border: 12px solid #E4E4E7;
  border-radius: 12px 12px 0 0;
  border-bottom: 24px solid #A1A1AA;
  position: relative;
  overflow: hidden;
  transform-origin: bottom center;
  transform: rotateX(85deg);
  opacity: 0;
}

.laptop.open .laptop-screen {
  animation: openLid 1.5s forwards cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes openLid {
  0% {
    transform: rotateX(85deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

.laptop-base {
  width: 115%;
  height: 20px;
  background: #CBD5E1;
  border-radius: 4px 4px 20px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 3px 5px rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 2;
  margin-top: -2px;
}

.laptop-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15%;
  height: 4px;
  background: #94A3B8;
  border-radius: 0 0 4px 4px;
}

.browser-window {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #202124;
  padding: 1rem;
}

.fake-logo {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.fake-logo span:nth-child(1) {
  color: #4285F4;
}

.fake-logo span:nth-child(2) {
  color: #EA4335;
}

.fake-logo span:nth-child(3) {
  color: #FBBC05;
}

.fake-logo span:nth-child(4) {
  color: #4285F4;
}

.fake-logo span:nth-child(5) {
  color: #34A853;
}

.fake-logo span:nth-child(6) {
  color: #EA4335;
}

.search-bar-fake {
  width: 80%;
  max-width: 300px;
  border: 1px solid #dfe1e5;
  border-radius: 20px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 1px 6px rgba(32, 33, 36, .28);
  font-size: 0.9rem;
  color: #202124;
  min-height: 36px;
}

.typewriter-text {
  border-right: 2px solid #555;
  padding-right: 4px;
  animation: blinkCur 0.75s step-end infinite;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

@keyframes blinkCur {
  50% {
    border-color: transparent;
  }
}

.search-btn-fake {
  margin-top: 1.2rem;
  background: #f8f9fa;
  border: 1px solid #f8f9fa;
  border-radius: 4px;
  color: #3c4043;
  padding: 0 14px;
  line-height: 36px;
  font-size: 14px;
}

.browser-results {
  position: absolute;
  inset: 0;
  background: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.browser-results.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

.error-card {
  border: 1px solid #fbc02d;
  background: #fffde7;
  padding: 1rem;
  border-radius: 6px;
  color: #c62828;
  max-width: 85%;
}

.error-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.error-card p {
  color: #333;
  font-size: 0.85rem;
  line-height: 1.3;
}

.hidden-initial {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease 0.5s;
}

.visible-after-story {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ── Storytelling Mobile ── */
@media (max-width: 768px) {
  .laptop {
    width: 80%;
    max-width: 80vw;
    margin-top: -60px;
  }

  .laptop-screen {
    border-width: 4px;
    border-bottom-width: 8px;
    border-radius: 8px 8px 0 0;
  }

  .fake-logo {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .search-bar-fake {
    width: 95%;
    padding: 6px 12px;
    font-size: 0.95rem;
    min-height: 28px;
  }

  .browser-window {
    padding: 0.5rem;
  }

  .browser-results {
    padding: 0.5rem;
  }

  .error-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 4px;
  }

  .error-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }

  .error-card p {
    font-size: 0.95rem;
    margin-top: 4px !important;
    margin-bottom: 4px !important;
    line-height: 1.2;
  }

  .search-btn-fake {
    margin-top: 0.8rem;
    padding: 0 12px;
    line-height: 28px;
    font-size: 14px;
  }

  .btn-skip {
    font-size: 0.8rem;
    padding: 6px 14px;
    margin-top: 1.5rem;
  }
}

@media (max-width: 500px) {
  .laptop {
    margin-top: -90px;
    width: 95%;
    max-width: 95vw;
  }

  .fake-logo {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }

  .search-bar-fake {
    font-size: 0.8rem;
    min-height: 24px;
    padding: 4px 8px;
  }

  .search-btn-fake {
    margin-top: 0.6rem;
    line-height: 24px;
    font-size: 12px;
    padding: 0 10px;
  }

  .error-card {
    padding: 0.8rem;
  }

  .error-card h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .error-card p {
    font-size: 0.8rem;
    line-height: 1.25;
  }
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none !important;
}

@media (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }
}

/* ══════════════════════════════════
   DIVISÓRIA NEON ENTRE SEÇÕES DE SERVIÇO
══════════════════════════════════ */
#servico-trafego,
#servico-sites,
#servico-ia,
#servico-fluxo {
  border-bottom: 5px solid transparent;
  border-image: linear-gradient(90deg, transparent, #AD80A7 30%, #ccacc8 50%, #AD80A7 70%, transparent) 1;
  box-shadow: 0 5px 20px rgba(173, 128, 167, 0.25);
}



/* ══════════════════════════════════
   SEÇÃO: DEPOIMENTOS CARROSSEL
══════════════════════════════════ */
.reviews-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* Fade linear para dar sumiço suave nas bordas mesmo no fundo escuro */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  margin-top: 3rem;
  display: flex;
}

.reviews-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  animation: scrollReviews 30s linear infinite;
}

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

.review-card {
  width: 380px;
  background: #F8FAFC;
  /* Off-white / claro */
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem 1.7rem;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  color: #0F172A;
  /* Texto escuro para dar contraste no fundo off-white */
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

img.review-avatar {
  width: 52px;
  height: 52px;
  background: var(--bg);
  color: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
  object-position: center top;
}

.review-header strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 3px;
}

.review-header span {
  display: block;
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 500;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
  font-style: italic;
  margin-top: auto;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  /* Compensa 50% garantindo a repetição */
  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

/* ══════════════════════════════════
   SEÇÃO: FUNDADORES (SOBRE NÓS)
══════════════════════════════════ */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.founder-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}

.founder-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.founder-img-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg3);
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.founder-card:hover .founder-img-wrapper img {
  transform: scale(1.05);
}

.founder-info {
  padding: 1.5rem;
  text-align: center;
}

.founder-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.founder-info p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.6;
}