﻿/* ==========================================================================
   COMPRAR BACKLINKS - DESIGN SYSTEM & ESTILOS DO CABEÇALHO
   Aparência: Cabeçalho Branco Premium com Paleta Personalizada
   ========================================================================== */

/* --- VARIÁVEIS CSS (DESIGN TOKENS) --- */
:root {
  /* Paleta de Cores do Usuário */
  --color-navy: #4A5D81;         /* Azul acinzentado escuro — textos e elementos primários */
  --color-aqua: #A4F3FC;         /* Ciano suave — backgrounds de destaque e badges */
  --color-blue: #4BC4FF;         /* Azul vibrante — CTAs e ícones ativos */
  --color-green: #BA5F73;        /* Verde menta — indicadores de status e sucesso */
  --color-rose: #BA5F73;         /* Rosa terroso — acentos e hovers especiais */

  /* Cores de Fundo */
  --bg-body: #F4F7FB;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #F0F4FA;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: rgba(244, 247, 251, 0.98);
  
  /* Cabeçalho Branco */
  --header-bg: rgba(255, 255, 255, 0.92);
  --header-bg-scrolled: rgba(255, 255, 255, 0.98);
  --header-border: rgba(74, 93, 129, 0.12);
  --header-height: 82px;
  
  /* Cores de Ação e Destaque */
  --primary-cyan: #4BC4FF;
  --primary-blue: #4A5D81;
  --primary-indigo: #4A5D81;
  --primary-purple: #BA5F73;
  --accent-gold: #F59E0B;
  --accent-emerald: #BA5F73;
  --accent-pink: #BA5F73;
  --accent-red: #EF4444;
  --accent-teal: #A4F3FC;

  /* WhatsApp */
  --whatsapp-green: #25D366;
  --whatsapp-hover: #20BA5A;
  --whatsapp-glow: rgba(37, 211, 102, 0.3);

  /* Gradientes com a Nova Paleta */
  --grad-cyan-blue: linear-gradient(135deg, #A4F3FC 0%, #4BC4FF 100%);
  --grad-purple-blue: linear-gradient(135deg, #BA5F73 0%, #4A5D81 100%);
  --grad-accent-text: linear-gradient(135deg, #4BC4FF 0%, #4A5D81 60%, #BA5F73 100%);
  --grad-border: linear-gradient(135deg, rgba(75, 196, 255, 0.5), rgba(186, 95, 115, 0.2));

  /* Tipografia */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Cores de Texto (fundo claro) */
  --text-white: #FFFFFF;
  --text-primary: #1E2B3C;
  --text-secondary: #4A5D81;
  --text-muted: #8398BA;

  /* Sombras suaves para fundo branco */
  --shadow-sm: 0 2px 8px rgba(74, 93, 129, 0.1);
  --shadow-md: 0 8px 24px rgba(74, 93, 129, 0.15);
  --shadow-lg: 0 20px 48px rgba(74, 93, 129, 0.18), 0 0 40px rgba(75, 196, 255, 0.06);
  --glow-cyan: 0 0 20px rgba(75, 196, 255, 0.3);
  
  /* Transições & Raios */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}


/* --- RESET E BASES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* --- HEADER PRINCIPAL (FIXO / GLASSMORPHISM) --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(22, 163, 74, 0.2);
  z-index: 1000;
  transition: background var(--transition-normal), box-shadow var(--transition-normal), height var(--transition-normal);
}

.site-header.scrolled {
  background: var(--header-bg-scrolled);
  box-shadow: var(--shadow-md);
  height: 74px;
}

.header-container {
  max-width: 1500px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* --- LOGOTIPO --- */
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 10px rgba(75, 196, 255, 0.4));
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  height: 48px;
  width: 48px;
  border-radius: 10px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text-comprar {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #F1F5F9;
  letter-spacing: -0.3px;
  text-transform: lowercase;
}

.logo-text-backlinks {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00AAFF 0%, #0066FF 60%, #6366F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

/* --- NAVEGAÇÃO DESKTOP --- */
.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-item {
  position: relative;
}

/* Botões do Menu (SERVIÇOS e BLOG) */
.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nav-button-icon {
  display: flex;
  align-items: center;
  color: var(--primary-cyan);
  transition: transform var(--transition-fast);
}

.dropdown-chevron {
  transition: transform var(--transition-normal);
  color: var(--text-secondary);
}

.nav-button:hover,
.nav-item.has-dropdown:hover .nav-button,
.nav-button.active {
  background: rgba(75, 196, 255, 0.1);
  color: #4A5D81;
  border-color: rgba(75, 196, 255, 0.4);
  box-shadow: 0 2px 12px rgba(75, 196, 255, 0.15);
}

.nav-button:hover .nav-button-icon,
.nav-item.has-dropdown:hover .nav-button-icon {
  transform: scale(1.1);
}

.nav-item.has-dropdown:hover .dropdown-chevron,
.nav-item.has-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--primary-cyan);
}

/* --- MEGA DROPDOWN (SERVIÇOS) --- */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 780px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(74, 93, 129, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.25s;
  overflow: hidden;
  z-index: 1100;
}

/* Linha de topo no dropdown com gradiente tecnológico */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4BC4FF, #4A5D81, #BA5F73);
}

/* Exibição controlada 100% via JavaScript (ver main.js) */
.nav-item.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}



.dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 24px;
}

/* Grupos / Colunas dentro do dropdown */
.dropdown-group-header {
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(74, 93, 129, 0.1);
}

.group-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary-cyan);
  display: inline-block;
  margin-bottom: 4px;
}

.group-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1E2B3C;
  letter-spacing: -0.2px;
}

.services-sublist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Card de cada serviço no dropdown */
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: rgba(74, 93, 129, 0.04);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.service-card:hover {
  background: rgba(75, 196, 255, 0.08);
  border-color: rgba(75, 196, 255, 0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(74, 93, 129, 0.12);
}

/* Destaque para Valores de Backlinks */
.service-card.featured-service {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
}

.service-card.featured-service:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.2);
}

/* Ícones dos Serviços */
.service-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-icon-box {
  transform: scale(1.1);
}

.service-icon-box.accent-gold {
  background: rgba(245, 158, 11, 0.15);
  color: #FBBF24;
}

.service-icon-box.accent-cyan {
  background: rgba(164, 243, 252, 0.35);
  color: #4BC4FF;
}

.service-icon-box.accent-blue {
  background: rgba(74, 93, 129, 0.12);
  color: #4A5D81;
}

.service-icon-box.accent-red {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
}

.service-icon-box.accent-pink {
  background: rgba(186, 95, 115, 0.12);
  color: #BA5F73;
}

.service-icon-box.accent-emerald {
  background: rgba(150, 245, 162, 0.25);
  color: #2db944;
}

.service-icon-box.accent-purple {
  background: rgba(186, 95, 115, 0.1);
  color: #BA5F73;
}

.service-icon-box.accent-indigo {
  background: rgba(74, 93, 129, 0.1);
  color: #4A5D81;
}

.service-icon-box.accent-teal {
  background: rgba(164, 243, 252, 0.3);
  color: #0ea8c5;
}

.service-info {
  display: flex;
  flex-direction: column;
}

.service-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  color: #1E2B3C;
  transition: color var(--transition-fast);
}

.service-card:hover .service-name {
  color: #4A5D81;
}

.badge-tag {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #000;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-top: 2px;
}

/* Rodapé do Dropdown */
.dropdown-footer {
  padding: 14px 24px;
  background: rgba(74, 93, 129, 0.05);
  border-top: 1px solid rgba(74, 93, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-footer-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(150, 245, 162, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(150, 245, 162, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(150, 245, 162, 0); }
}

.dropdown-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-cyan);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.dropdown-footer-link:hover {
  color: #1E2B3C;
  transform: translateX(3px);
}

/* --- AÇÕES DO HEADER (WHATSAPP & HAMBURGUER) --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Botão WhatsApp Oficial de Alta Conversão */
.btn-whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-normal);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-whatsapp:hover .whatsapp-glow {
  left: 100%;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #28E770 0%, #16A085 100%);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

.whatsapp-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Botão Menu Hamburguer (Mobile) */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  background: rgba(74, 93, 129, 0.06);
  border: 1px solid rgba(74, 93, 129, 0.15);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(74, 93, 129, 0.12);
}

.bar,
.hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: #4A5D81;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animação do X quando ativo */
.mobile-toggle.active .bar-1,
.mobile-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .bar-2,
.mobile-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .bar-3,
.mobile-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- GAVETA MOBILE (DRAWER) --- */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: -100%;
  right: auto;
  width: 100%;
  max-width: 100vw;
  height: calc(100vh - var(--header-height));
  background: #FFFFFF;
  border-left: none;
  box-shadow: none;
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  z-index: 1050;
}

.mobile-drawer.open {
  left: 0;
}

body.mobile-menu-open .float-buttons,
body:has(.mobile-drawer.open) .float-buttons {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.mobile-menu-open .float-buttons,
body:has(.mobile-drawer.open) .float-buttons {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-drawer-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-backdrop {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: rgba(74, 93, 129, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 1040;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Accordion de Serviços Mobile */
.mobile-accordion {
  border-radius: var(--radius-md);
  background: rgba(74, 93, 129, 0.05);
  border: 1px solid rgba(74, 93, 129, 0.12);
  overflow: hidden;
}

.mobile-accordion-btn {
  width: 100%;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1E2B3C;
  text-align: left;
}

.mobile-chevron {
  transition: transform var(--transition-normal);
  color: var(--primary-cyan);
}

.mobile-accordion-btn.open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  display: none;
  padding: 10px 16px 18px;
  border-top: 1px solid rgba(74, 93, 129, 0.08);
}

.mobile-accordion-content.open {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-cat-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-cyan);
  margin-top: 6px;
  margin-bottom: 4px;
}

.mobile-cat-title.mt-4 {
  margin-top: 14px;
}

.mobile-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.mobile-sublink:hover {
  background: rgba(75, 196, 255, 0.1);
  color: #4A5D81;
}

.mobile-sublink.highlight {
  color: #FBBF24;
  font-weight: 600;
}

.badge-tag-sm {
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  background: #F59E0B;
  color: #000;
  font-weight: 800;
}

.mobile-nav-link {
  display: block;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(74, 93, 129, 0.05);
  border: 1px solid rgba(74, 93, 129, 0.12);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1E2B3C;
}

.mobile-whatsapp-wrap {
  margin-top: 8px;
}

.btn-whatsapp.full-width {
  width: 100%;
}

/* ==========================================================================
   SEÇÃO HERO PREVIEW (DEMO DO SITE)
   ========================================================================== */
.hero-preview-section {
  position: relative;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 40px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 15%, rgba(75, 196, 255, 0.07) 0%, transparent 65%);
}

.hero-glow-bg {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 450px;
  background: radial-gradient(circle, rgba(75, 196, 255, 0.1) 0%, rgba(186, 95, 115, 0.05) 50%, transparent 80%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

/* Coluna esquerda — textos e CTAs */
.hero-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-top: 36px;
}

/* Coluna direita — banner / preview card */
.hero-visual {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(75, 196, 255, 0.1);
  border: 1px solid rgba(75, 196, 255, 0.3);
  font-size: 0.82rem;
  font-weight: 700;
  color: #4A5D81;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-cyan);
  box-shadow: 0 0 10px var(--primary-cyan);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #1E2B3C;
  max-width: 100%;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--grad-accent-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 100%;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #4BC4FF 0%, #4A5D81 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(75, 196, 255, 0.35);
  transition: all var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(75, 196, 255, 0.5);
  filter: brightness(1.08);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Preview Card */
.hero-card-preview {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-lg);
  background: transparent;
  border: 1px solid rgba(0, 71, 171, 0.15);
  box-shadow: 0 16px 36px -10px rgba(0, 71, 171, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-card-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px -8px rgba(0, 71, 171, 0.25);
  border-color: rgba(75, 196, 255, 0.4);
}

.browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #080C14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.browser-url {
  font-size: 0.78rem;
  font-family: monospace;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.browser-status {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-emerald);
  letter-spacing: 0.5px;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
}

.hero-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.image-overlay-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 12px;
}

.metric-pill {
  background: rgba(11, 16, 27, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-cyan);
}

.metric-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .dropdown-menu {
    width: 680px;
  }
}

@media (max-width: 860px) {
  .main-nav {
    display: none; /* Ativa Menu Mobile */
  }

  .mobile-toggle {
    display: flex;
  }

  .dropdown-menu {
    display: none;
  }

  .btn-whatsapp .whatsapp-label {
    display: none;
  }

  .btn-whatsapp {
    padding: 10px 14px;
  }

  .image-overlay-card {
    position: static;
    margin: 16px;
    justify-content: center;
  }

  /* Hero empilhado em tablet/mobile */
  .hero-container {
    flex-direction: column;
    gap: 32px;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    padding-top: 0;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 72px;
  }

  .header-container {
    padding: 0 16px;
  }

  .logo-image {
    height: 36px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   BOTÕES FLUTUANTES LATERAIS (LADO DIREITO)
   ========================================================================== */

.float-buttons {
  position: fixed;
  right: 20px;
  bottom: calc(24px + 4cm);
  top: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9000;
}

/* Base de cada botão flutuante */
.float-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  overflow: visible;
}

.float-btn:hover {
  transform: scale(1.12) translateX(-4px);
}

/* Tooltip ao passar o mouse */
.float-btn::after {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 43, 60, 0.92);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-50%) translateX(6px);
}

.float-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── WhatsApp (Verde + Pulso Equilibrado & Notável) ─────────────────── */
.float-btn--whatsapp {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.55);
}

.float-btn--whatsapp:hover {
  background: #20C45C;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8);
}

/* Ondas de pulso — 1ª camada */
.float-pulse {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.6);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.7);
  animation: waPulse 1.8s ease-out infinite;
  pointer-events: none;
}

/* 2ª camada com delay para efeito duplo */
.float-pulse--2 {
  background: rgba(37, 211, 102, 0.38);
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.5);
  animation: waPulse 1.8s ease-out infinite 0.9s;
}

@keyframes waPulse {
  0% {
    transform: scale(0.98);
    opacity: 0.9;
  }
  60% {
    opacity: 0.45;
  }
  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}

/* ── Telefone (Cinza escuro) ─────────────────────────────────────────── */
.float-btn--phone {
  background: #4A5D81;
  box-shadow: 0 4px 18px rgba(74, 93, 129, 0.4);
}

.float-btn--phone:hover {
  background: #3d4f6e;
  box-shadow: 0 6px 24px rgba(74, 93, 129, 0.6);
}

/* ── E-mail (Vermelho) ────────────────────────────────────────────────── */
.float-btn--email {
  background: #E53935;
  box-shadow: 0 4px 18px rgba(229, 57, 53, 0.4);
}

.float-btn--email:hover {
  background: #C62828;
  box-shadow: 0 6px 24px rgba(229, 57, 53, 0.6);
}

/* Responsivo: botões menores em telas pequenas */
@media (max-width: 480px) {
  .float-buttons {
    right: 12px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  /* Esconde tooltip no mobile */
  .float-btn::after {
    display: none;
  }
}



/* ==========================================================================
   SEÇÃO: PASSOS PARA COMPRA E ENTREGA (#96F5A2)
   ========================================================================== */
.steps-section {
  position: relative;
  padding: 50px 0 70px;
  background: linear-gradient(180deg, #0D1628 0%, #111B30 50%, #0D1628 100%);
  color: #FFFFFF;
  overflow: hidden;
}

.steps-bg-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(circle, rgba(150, 245, 162, 0.08) 0%, rgba(75, 196, 255, 0.04) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.steps-container {
  position: relative;
  z-index: 1;
}

.steps-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 44px;
}

.steps-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(150, 245, 162, 0.12);
  border: 1px solid rgba(150, 245, 162, 0.35);
  border-radius: 999px;
  color: #BA5F73;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.steps-badge-dot {
  width: 8px;
  height: 8px;
  background-color: #BA5F73;
  border-radius: 50%;
  box-shadow: 0 0 10px #BA5F73;
  animation: pulse-dot 2s infinite ease-in-out;
}

.steps-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: #96F5A2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  text-shadow: 0 0 24px rgba(150, 245, 162, 0.28);
}

.steps-subtitle {
  font-size: 1.05rem;
  color: #96F5A2;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* Grid com os 4 Passos */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

.step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(150, 245, 162, 0.4);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35), 0 0 20px rgba(150, 245, 162, 0.15);
}

.step-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: #96F5A2;
  letter-spacing: -1px;
  line-height: 1;
  text-shadow: 0 0 15px rgba(150, 245, 162, 0.3);
}

.step-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(150, 245, 162, 0.1);
  border: 1px solid rgba(150, 245, 162, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BA5F73;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon-wrap {
  background: #BA5F73;
  color: #0D1628;
  transform: scale(1.08);
}

.step-title-link,
.step-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.step-title-link:hover,
.step-name a:hover {
  color: #96F5A2;
}

.step-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #BA5F73;
  line-height: 1.35;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.92rem;
  color: #98A9BF;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.step-footer {
  margin-top: auto;
}

.step-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(75, 196, 255, 0.1);
  color: #4BC4FF;
  border: 1px solid rgba(75, 196, 255, 0.2);
}

/* CTA no final da seção */
.steps-cta-wrap {
  display: flex;
  justify-content: center;
}

.steps-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(75, 196, 255, 0.35);
}

/* Botão LEIA MAIS dos Cards */
.step-btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 8px;
  background: rgba(150, 245, 162, 0.1);
  color: #BA5F73;
  border: 1px solid rgba(150, 245, 162, 0.35);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.step-btn-readmore:hover {
  background: #BA5F73;
  color: #0D1628;
  border-color: #BA5F73;
  box-shadow: 0 4px 18px rgba(150, 245, 162, 0.45);
  transform: translateY(-2px);
}

.step-btn-readmore svg {
  transition: transform 0.3s ease;
}

.step-btn-readmore:hover svg {
  transform: translateX(4px);
}

/* Responsivo dos Passos (Mobile: 1 bloco por vez) */
@media (max-width: 1250px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 850px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .steps-section {
    padding: 40px 0 50px;
  }

  .steps-header {
    margin-bottom: 30px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 22px 18px;
  }

  .steps-cta-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   SEÇÃO: COISAS IMPORTANTES SOBRE BACKLINKS — FUNDO VIVO + ÍCONES TECH
   ========================================================================== */
.important-info-section {
  position: relative;
  background: linear-gradient(135deg,
    #9B3A52 0%,
    #BA5F73 30%,
    #D4758A 55%,
    #BA5F73 75%,
    #8A2E47 100%
  );
  padding: 80px 0 90px;
  overflow: hidden;
  isolation: isolate;
}

/* Malha geométrica animada de fundo */
.iis-bg-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 93, 129, 0.18) 1px, transparent 1px),
      linear-gradient(90deg, rgba(74, 93, 129, 0.18) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  animation: iis-mesh-drift 25s linear infinite;
}

@keyframes iis-mesh-drift {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 50px 50px, 50px 50px; }
}

/* Bolas de glow vibrantes */
.iis-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.iis-bg-glow--1 {
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(164, 243, 252, 0.25) 0%, transparent 70%);
  top: -120px;
  left: -80px;
  animation: iis-glow-float 9s ease-in-out infinite alternate;
}

.iis-bg-glow--2 {
  width: 500px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 180, 200, 0.3) 0%, transparent 70%);
  bottom: -100px;
  right: -60px;
  animation: iis-glow-float 12s ease-in-out infinite alternate-reverse;
}

@keyframes iis-glow-float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}

/* Container dos ícones flutuantes */
.iis-floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Ícone base */
.iis-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.iis-icon svg {
  width: 55%;
  height: 55%;
}

/* Posicionamento e animação individual de cada ícone */
.iis-icon--1  { width: 64px; height: 64px; top: 6%;   left: 3%;   animation: iis-float-a 6s ease-in-out infinite; }
.iis-icon--2  { width: 50px; height: 50px; top: 22%;  left: 11%;  animation: iis-float-b 8s ease-in-out infinite 0.8s; }
.iis-icon--3  { width: 72px; height: 72px; top: 4%;   left: 28%;  animation: iis-float-c 7s ease-in-out infinite 1.5s; color: rgba(164,243,252,0.75); border-color: rgba(164,243,252,0.3); }
.iis-icon--4  { width: 56px; height: 56px; top: 55%;  left: 4%;   animation: iis-float-a 7s ease-in-out infinite 0.4s; }
.iis-icon--5  { width: 66px; height: 66px; top: 78%;  left: 18%;  animation: iis-float-b 9s ease-in-out infinite 2.5s; }
.iis-icon--6  { width: 54px; height: 54px; top: 8%;   right: 26%; animation: iis-float-c 7s ease-in-out infinite 1.2s; color: rgba(164,243,252,0.7); border-color: rgba(164,243,252,0.25); }
.iis-icon--7  { width: 70px; height: 70px; top: 4%;   right: 6%;  animation: iis-float-a 8s ease-in-out infinite 2s; }
.iis-icon--8  { width: 58px; height: 58px; top: 62%;  right: 4%;  animation: iis-float-b 6.5s ease-in-out infinite 0.6s; color: rgba(164,243,252,0.65); border-color: rgba(164,243,252,0.25); }
.iis-icon--9  { width: 48px; height: 48px; top: 82%;  right: 18%; animation: iis-float-c 9s ease-in-out infinite 3.5s; }
.iis-icon--10 { width: 60px; height: 60px; top: 40%;  left: 2%;   animation: iis-float-a 7.5s ease-in-out infinite 1s; color: rgba(164,243,252,0.6); border-color: rgba(164,243,252,0.2); }
.iis-icon--11 { width: 52px; height: 52px; top: 88%;  left: 38%;  animation: iis-float-b 8.5s ease-in-out infinite 1.8s; }
.iis-icon--12 { width: 54px; height: 54px; top: 35%;  right: 2%;  animation: iis-float-c 6s ease-in-out infinite 0.3s; }
.iis-icon--13 { width: 62px; height: 62px; top: 70%;  left: 42%;  animation: iis-float-a 9.5s ease-in-out infinite 4s; color: rgba(164,243,252,0.6); border-color: rgba(164,243,252,0.2); }
.iis-icon--14 { width: 56px; height: 56px; top: 18%;  right: 12%; animation: iis-float-b 7s ease-in-out infinite 2.2s; }
.iis-icon--15 { width: 58px; height: 58px; top: 50%;  right: 14%; animation: iis-float-c 8s ease-in-out infinite 1.4s; }

/* Três variações de movimento para parecerem independentes */
@keyframes iis-float-a {
  0%   { transform: translateY(0px)   translateX(0px)   rotate(0deg); }
  25%  { transform: translateY(-22px) translateX(6px)   rotate(4deg); }
  50%  { transform: translateY(-10px) translateX(-5px)  rotate(-3deg); }
  75%  { transform: translateY(-18px) translateX(3px)   rotate(2deg); }
  100% { transform: translateY(0px)   translateX(0px)   rotate(0deg); }
}

@keyframes iis-float-b {
  0%   { transform: translateY(0px)   translateX(0px)   rotate(0deg); }
  30%  { transform: translateY(-18px) translateX(-7px)  rotate(-5deg); }
  60%  { transform: translateY(-26px) translateX(4px)   rotate(3deg); }
  80%  { transform: translateY(-12px) translateX(-3px)  rotate(-2deg); }
  100% { transform: translateY(0px)   translateX(0px)   rotate(0deg); }
}

@keyframes iis-float-c {
  0%   { transform: translateY(0px)   translateX(0px)   rotate(0deg); }
  20%  { transform: translateY(-14px) translateX(8px)   rotate(6deg); }
  50%  { transform: translateY(-24px) translateX(-4px)  rotate(-4deg); }
  70%  { transform: translateY(-8px)  translateX(6px)   rotate(3deg); }
  100% { transform: translateY(0px)   translateX(0px)   rotate(0deg); }
}

/* Container z-index acima dos ícones */
.important-info-container {
  position: relative;
  z-index: 2;
}

/* Eyebrow badge */
.iis-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #1E2B3C;
  margin-bottom: 20px;
}

.iis-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: #A4F3FC;
  border-radius: 50%;
  box-shadow: 0 0 10px #A4F3FC;
  animation: pulse-dot 2s ease-in-out infinite;
}

.important-info-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

/* Título principal */
.important-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #A4F3FC;
  letter-spacing: -0.5px;
  margin: 0;
  text-shadow: 0 0 30px rgba(164, 243, 252, 0.5), 0 2px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .important-info-section {
    padding: 60px 0 70px;
  }

  .iis-icon--3, .iis-icon--5, .iis-icon--6, .iis-icon--9, .iis-icon--11, .iis-icon--13, .iis-icon--15 {
    display: none;
  }

  .important-info-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

@media (max-width: 480px) {
  .iis-icon--1, .iis-icon--2, .iis-icon--7, .iis-icon--8 {
    width: 44px;
    height: 44px;
  }
}


/* --- BLOCOS DE CONTEÚDO DA SEÇÃO IMPORTANTE --- */
.iis-blocks-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 48px auto 0;
}

.iis-block {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.iis-block:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.iis-block-arrow {
  color: #FFFFFF;
  stroke: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.iis-block:hover .iis-block-arrow {
  transform: translateX(4px);
}

.iis-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
}

.iis-block-number {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 1px;
  min-width: 28px;
  text-shadow: none;
}

.iis-block-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1E2B3C;
  line-height: 1.3;
  margin: 0;
  flex: 1;
  letter-spacing: 0.1px;
}

.iis-block-chevron {
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.iis-block:hover .iis-block-chevron {
  transform: rotate(-90deg);
  color: #4A5D81;
}

@media (max-width: 640px) {
  .iis-blocks-grid {
    margin-top: 32px;
    gap: 10px;
  }

  .iis-block-arrow {
  color: #FFFFFF;
  stroke: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.iis-block:hover .iis-block-arrow {
  transform: translateX(4px);
}

.iis-block-header {
    padding: 16px 18px;
    gap: 14px;
  }

  .iis-block-title {
    font-size: 0.95rem;
  }
}


/* ==========================================================================
   SEÇÃO: BACKLINKS POR NICHO — AZUL CLARO + AZUL ESCURO
   ========================================================================== */
.niche-section {
  position: relative;
  background: linear-gradient(180deg, #EDF6FF 0%, #E3F0FC 50%, #EDF6FF 100%);
  padding: 85px 0 95px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(13, 33, 55, 0.08);
}

.niche-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.niche-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.niche-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.niche-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #0D2137;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.niche-subtitle {
  font-size: 1.05rem;
  color: #355170;
  line-height: 1.6;
  margin: 0 auto;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.niche-card {
  background: #FFFFFF;
  border: 1px solid rgba(13, 33, 55, 0.08);
  border-radius: 18px;
  padding: 36px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(13, 33, 55, 0.06), 0 8px 10px -6px rgba(13, 33, 55, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.niche-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -5px rgba(13, 33, 55, 0.12), 0 12px 16px -6px rgba(13, 33, 55, 0.08);
  border-color: rgba(37, 211, 102, 0.4);
}

.niche-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.niche-card:hover .niche-icon-wrap {
  transform: scale(1.1);
}

.niche-icon-wrap--instagram {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.niche-icon-wrap--youtube {
  background: linear-gradient(135deg, #FF0000, #CC0000);
}

.niche-icon-wrap--sites {
  background: linear-gradient(135deg, #1D68EC, #0284C7);
}

.niche-icon-wrap--ecommerce {
  background: linear-gradient(135deg, #10B981, #059669);
}

.niche-icon-wrap--facebook {
  background: linear-gradient(135deg, #1877F2, #0C63D4);
}

.niche-icon-wrap--tiktok {
  background: linear-gradient(135deg, #010101, #222222);
}

.niche-icon-wrap--linkedin {
  background: linear-gradient(135deg, #0A66C2, #004182);
}

.niche-icon-wrap--twitter {
  background: linear-gradient(135deg, #0F1419, #28333E);
}

.niche-card-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #0D2137;
  line-height: 1.35;
  margin-bottom: 12px;
}

.niche-card-desc {
  font-size: 0.92rem;
  color: #355170;
  line-height: 1.58;
  margin-bottom: 22px;
  flex-grow: 1;
}

.niche-card-footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Link Ler Mais — Verde WhatsApp (Apenas texto e seta, sem borda) */
.niche-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 4px 0;
  background: transparent;
  color: #25D366;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.niche-card-btn svg {
  color: #25D366;
  stroke: #25D366;
  transition: transform 0.3s ease;
}

.niche-card-btn:hover {
  color: #1da851;
  background: transparent;
  border: none;
  box-shadow: none;
  transform: none;
}

.niche-card-btn:hover svg {
  color: #1da851;
  stroke: #1da851;
  transform: translateX(5px);
}

@media (max-width: 1080px) {
  .niche-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .niche-section {
    padding: 55px 0 65px;
  }
  .niche-title {
    font-size: 1.7rem;
  }
  .niche-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .niche-card {
    padding: 28px 20px;
  }
}

/* ==========================================================================
   SEÇÃO: ELEVE SEU D.A. & A FORÇA DOS BACKLINKS (TECH & DINÂMICO)
   ========================================================================== */
.da-power-section {
  position: relative;
  background: #0D1628;
  padding: 95px 0 105px;
  overflow: hidden;
  border-top: 1px solid rgba(164, 243, 252, 0.15);
  border-bottom: 1px solid rgba(164, 243, 252, 0.15);
}

/* Glows de Fundo */
.da-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.28;
}

.da-bg-glow--1 {
  width: 480px;
  height: 480px;
  background: #4BC4FF;
  top: -100px;
  left: -100px;
}

.da-bg-glow--2 {
  width: 500px;
  height: 500px;
  background: #BA5F73;
  bottom: -150px;
  right: -100px;
}

.da-bg-glow--3 {
  width: 350px;
  height: 350px;
  background: #96F5A2;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
}

.da-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.da-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.da-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(164, 243, 252, 0.08);
  border: 1px solid rgba(164, 243, 252, 0.25);
  color: #A4F3FC;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.da-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #96F5A2;
  box-shadow: 0 0 10px #96F5A2;
  animation: pulse-dot 2s infinite ease-in-out;
}

.da-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 800;
  color: #96F5A2;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 14px;
  text-shadow: 0 0 24px rgba(150, 245, 162, 0.25);
}

.da-main-subtitle {
  font-size: 1.05rem;
  color: #98A9BF;
  line-height: 1.6;
}

/* Grid de 2 Colunas */
.da-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Card Geral */
.da-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.da-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(75, 196, 255, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(75, 196, 255, 0.12);
}

.da-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.da-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.da-icon--mint {
  background: rgba(150, 245, 162, 0.12);
  border: 1px solid rgba(150, 245, 162, 0.3);
}

.da-icon--cyan {
  background: rgba(164, 243, 252, 0.12);
  border: 1px solid rgba(164, 243, 252, 0.3);
}

.da-card-tag {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #4A5D81;
  background: rgba(74, 93, 129, 0.15);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(74, 93, 129, 0.25);
}

.da-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #BA5F73;
  line-height: 1.3;
  margin-bottom: 16px;
}

.da-lead-text {
  font-size: 1.05rem;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 18px;
}

.da-card-body-p {
  font-size: 0.94rem;
  color: #98A9BF;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Lista de Perguntas */
.da-questions-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.da-questions-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #DDE7F5;
  line-height: 1.45;
}

.da-q-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(150, 245, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Caixa Destaque Qualidade */
.da-highlight-box {
  position: relative;
  background: linear-gradient(135deg, rgba(75, 196, 255, 0.12) 0%, rgba(164, 243, 252, 0.05) 100%);
  border: 1px solid rgba(75, 196, 255, 0.3);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  overflow: hidden;
}

.da-highlight-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #4BC4FF;
  box-shadow: 0 0 12px #4BC4FF;
}

.da-highlight-icon {
  flex-shrink: 0;
}

.da-highlight-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1.5;
}

/* Comparativo Visual */
.da-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.da-comp-box {
  padding: 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.da-comp-box--bad {
  background: rgba(186, 95, 115, 0.08);
  border: 1px solid rgba(186, 95, 115, 0.25);
  color: #E2A6B3;
}

.da-comp-box--good {
  background: rgba(150, 245, 162, 0.08);
  border: 1px solid rgba(150, 245, 162, 0.25);
  color: #C3FAD0;
}

.da-comp-header {
  margin-bottom: 8px;
}

.da-comp-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.da-badge--rose {
  background: rgba(186, 95, 115, 0.25);
  color: #FFA5B8;
}

.da-badge--mint {
  background: rgba(150, 245, 162, 0.25);
  color: #96F5A2;
}

.da-comp-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: #FFFFFF;
}

/* Leaderboard dos Grandes Players - Altura e espaçamento refinados */
.da-players-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.da-player-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 6px 12px;
  transition: all 0.25s ease;
}

.da-player-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(164, 243, 252, 0.3);
  transform: translateX(4px);
}

.da-player-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  line-height: 1.2;
}

.da-player-name {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #DDE7F5;
  text-transform: uppercase;
}

.da-player-score {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: #4BC4FF;
}

.da-score--elite {
  color: #96F5A2;
  text-shadow: 0 0 8px rgba(150, 245, 162, 0.4);
}

.da-progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.da-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #4BC4FF 0%, #96F5A2 100%);
  transition: width 1s ease-in-out;
}

/* Caixa de Insight */
.da-insight-box {
  background: rgba(150, 245, 162, 0.06);
  border: 1px solid rgba(150, 245, 162, 0.2);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.da-insight-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.da-insight-content p {
  margin: 0 0 6px 0;
  font-size: 0.92rem;
  color: #FFFFFF;
  line-height: 1.45;
}

.da-insight-sub {
  color: #96F5A2 !important;
  font-size: 0.86rem !important;
  margin: 0 !important;
}

/* Footer / Botões */
.da-card-footer {
  margin-top: auto;
  padding-top: 10px;
}

.da-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 15px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.da-btn--rose {
  background: linear-gradient(135deg, #BA5F73 0%, #8A2E47 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 22px rgba(186, 95, 115, 0.4);
}

.da-btn--rose:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(186, 95, 115, 0.6);
  background: linear-gradient(135deg, #CF6B80 0%, #9C3450 100%);
}

.da-btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
}

.da-btn--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #28E770 0%, #16A085 100%);
}

/* Responsivo */
@media (max-width: 980px) {
  .da-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .da-power-section {
    padding: 65px 0 75px;
  }
  .da-card {
    padding: 30px 22px;
  }
  .da-comparison-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   SEÇÃO: NOTÍCIAS SOBRE BACKLINKS (TECH BLOG DESIGN)
   ========================================================================== */
.news-section {
  position: relative;
  background: #081120;
  padding: 95px 0 105px;
  overflow: hidden;
  border-top: 1px solid rgba(164, 243, 252, 0.12);
}

.news-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  opacity: 0.22;
}

.news-bg-glow--1 {
  width: 500px;
  height: 500px;
  background: #4BC4FF;
  top: -120px;
  right: -80px;
}

.news-bg-glow--2 {
  width: 450px;
  height: 450px;
  background: #96F5A2;
  bottom: -100px;
  left: -80px;
}

.news-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.news-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.news-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(164, 243, 252, 0.08);
  border: 1px solid rgba(164, 243, 252, 0.25);
  color: #A4F3FC;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.news-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #96F5A2;
  box-shadow: 0 0 10px #96F5A2;
  animation: pulse-dot 2s infinite ease-in-out;
}

.news-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 800;
  color: #96F5A2;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 14px;
  text-shadow: 0 0 24px rgba(150, 245, 162, 0.25);
}

.news-main-subtitle {
  font-size: 1.05rem;
  color: #98A9BF;
  line-height: 1.6;
}

/* Grid de Artigos */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card de Artigo */
.news-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.news-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(75, 196, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(75, 196, 255, 0.12);
}

/* Mídia / Imagem do Card */
.news-card-media {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background: #0D1929;
}

.news-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card-img {
  transform: scale(1.06);
}

.news-category-pill {
  display: none !important;
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(7, 16, 30, 0.85);
  color: #A4F3FC;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(164, 243, 252, 0.3);
  z-index: 2;
}

/* Conteúdo do Card */
.news-card-content {
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}



.news-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.38;
  margin-top: 4px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.38;
  margin-top: 4px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.news-card-desc {
  font-size: 0.88rem;
  color: #98A9BF;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.news-card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Botão Ler Mais em verde WhatsApp sem borda */
.news-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #25D366;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.news-card-btn svg {
  color: #25D366;
  stroke: #25D366;
  transition: transform 0.3s ease;
}

.news-card-btn:hover {
  color: #1da851;
}

.news-card-btn:hover svg {
  color: #1da851;
  stroke: #1da851;
  transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .news-section {
    padding: 60px 0 70px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .news-card-content {
    padding: 20px 16px 18px;
  }
}


/* ==========================================================================
   ESTILOS ESPECÍFICOS: PÁGINA DE ANÁLISE DE PERFIL DE BACKLINK & D.A.
   ========================================================================== */
.diag-why-section {
  position: relative;
  background: #091220;
  padding: 80px 0 90px;
  overflow: hidden;
  border-top: 1px solid rgba(164, 243, 252, 0.15);
  border-bottom: 1px solid rgba(164, 243, 252, 0.15);
}

.diag-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.25;
}

.diag-glow--1 {
  width: 500px;
  height: 500px;
  background: #4BC4FF;
  top: -100px;
  left: -80px;
}

.diag-glow--2 {
  width: 480px;
  height: 480px;
  background: #BA5F73;
  bottom: -100px;
  right: -80px;
}

.diag-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.diag-why-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.diag-header-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 44px;
}

.diag-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(164, 243, 252, 0.08);
  border: 1px solid rgba(164, 243, 252, 0.25);
  color: #A4F3FC;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.diag-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #96F5A2;
  box-shadow: 0 0 10px #96F5A2;
  animation: pulse-dot 2s infinite ease-in-out;
}

.diag-why-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #96F5A2;
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 0 0 24px rgba(150, 245, 162, 0.25);
}

.diag-why-lead {
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.6;
}

/* Grid de Benefícios */
.diag-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.diag-benefit-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.diag-benefit-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(75, 196, 255, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(75, 196, 255, 0.1);
}

.diag-benefit-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diag-icon--mint {
  background: rgba(150, 245, 162, 0.12);
  border: 1px solid rgba(150, 245, 162, 0.3);
}

.diag-icon--rose {
  background: rgba(186, 95, 115, 0.15);
  border: 1px solid rgba(186, 95, 115, 0.35);
}

.diag-icon--cyan {
  background: rgba(164, 243, 252, 0.12);
  border: 1px solid rgba(164, 243, 252, 0.3);
}

.diag-benefit-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #BA5F73;
  margin-bottom: 8px;
}

.diag-benefit-desc {
  font-size: 0.92rem;
  color: #98A9BF;
  line-height: 1.55;
  margin: 0;
}

/* Takeaway Bar */
.diag-takeaway-bar {
  background: linear-gradient(135deg, rgba(75, 196, 255, 0.12) 0%, rgba(150, 245, 162, 0.08) 100%);
  border: 1px solid rgba(75, 196, 255, 0.3);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.diag-takeaway-icon {
  flex-shrink: 0;
}

.diag-takeaway-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.5;
}

/* Seção das 6 Etapas */
.diag-steps-section {
  position: relative;
  background: #07101E;
  padding: 95px 0 105px;
  overflow: hidden;
}

.diag-steps-bg-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: #4BC4FF;
  filter: blur(160px);
  opacity: 0.12;
  pointer-events: none;
}

.diag-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.diag-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 800;
  color: #96F5A2;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 14px;
  text-shadow: 0 0 24px rgba(150, 245, 162, 0.25);
}

.diag-main-subtitle {
  font-size: 1.05rem;
  color: #98A9BF;
  line-height: 1.6;
}

/* Grid das 6 Etapas */
.diag-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.diag-step-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.diag-step-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(75, 196, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(75, 196, 255, 0.12);
}

.diag-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.diag-step-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #96F5A2;
  letter-spacing: -1px;
  line-height: 1;
}

.diag-step-pill {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(164, 243, 252, 0.1);
  color: #A4F3FC;
  border: 1px solid rgba(164, 243, 252, 0.25);
}

.diag-pill--rose {
  background: rgba(186, 95, 115, 0.15);
  color: #FFA5B8;
  border-color: rgba(186, 95, 115, 0.35);
}

.diag-pill--mint {
  background: rgba(150, 245, 162, 0.15);
  color: #96F5A2;
  border-color: rgba(150, 245, 162, 0.35);
}

.diag-step-title {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 800;
  color: #BA5F73;
  line-height: 1.35;
  margin-bottom: 12px;
}

.diag-step-intro {
  font-size: 0.96rem;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Lista de Bullets */
.diag-bullets-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.diag-bullets-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.diag-bullet-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(150, 245, 162, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.diag-bullet-text {
  font-size: 0.9rem;
  color: #98A9BF;
  line-height: 1.55;
}

.diag-bullet-text strong {
  color: #DDE7F5;
}

/* Nota de rodapé do step */
.diag-step-footer-note {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: #CAD7E8;
  line-height: 1.45;
  margin-top: auto;
}

.diag-step-footer-note svg {
  flex-shrink: 0;
}

/* Seção CTA Final */
.diag-cta-section {
  position: relative;
  background: #091220;
  padding: 85px 0 95px;
  overflow: hidden;
  border-top: 1px solid rgba(164, 243, 252, 0.15);
}

.diag-cta-card {
  background: linear-gradient(135deg, rgba(75, 196, 255, 0.1) 0%, rgba(150, 245, 162, 0.06) 100%);
  border: 1px solid rgba(75, 196, 255, 0.25);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.diag-cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.diag-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 16px 0 14px;
}

.diag-cta-desc {
  font-size: 1.05rem;
  color: #98A9BF;
  line-height: 1.6;
  margin-bottom: 32px;
}

.diag-cta-btn {
  padding: 15px 34px !important;
  font-size: 1.05rem !important;
}

/* Responsividade */
@media (max-width: 1024px) {
  .diag-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .diag-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .diag-why-card {
    padding: 36px 24px;
  }
  .diag-step-card {
    padding: 28px 22px;
  }
}

@media (max-width: 640px) {
  .diag-why-section, .diag-steps-section, .diag-cta-section {
    padding: 55px 0 65px;
  }
  .diag-cta-card {
    padding: 36px 20px;
  }
  .diag-takeaway-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}


/* ==========================================================================
   NOVA PÁGINA: O QUE É UM BACKLINK E QUAL SUA FINALIDADE? (PALETA MODERNA)
   Cores: #4A5D81, #A4F3FC, #4BC4FF, #96F5A2, #BA5F73
   ========================================================================== */

:root {
  --guide-slate: #4A5D81;
  --guide-ice: #A4F3FC;
  --guide-cyan: #4BC4FF;
  --guide-mint: #96F5A2;
  --guide-rose: #BA5F73;
}

/* Seção de Conteúdo Base */
.guide-section {
  position: relative;
  padding: 85px 0;
  background-color: #060B14;
  overflow: hidden;
}

.guide-section--alt {
  background-color: #080F1C;
  border-top: 1px solid rgba(74, 93, 129, 0.25);
  border-bottom: 1px solid rgba(74, 93, 129, 0.25);
}

.guide-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}

.guide-glow--cyan {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(75, 196, 255, 0.12) 0%, transparent 70%);
  top: 10%;
  left: -80px;
}

.guide-glow--mint {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(150, 245, 162, 0.08) 0%, transparent 70%);
  bottom: 5%;
  right: -80px;
}

.guide-glow--rose {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(186, 95, 115, 0.1) 0%, transparent 70%);
  top: 40%;
  right: 15%;
}

.guide-container {
  position: relative;
  z-index: 1;
}

/* Cabeçalho de Seção */
.guide-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(74, 93, 129, 0.25);
  border: 1px solid rgba(164, 243, 252, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #A4F3FC;
  margin-bottom: 16px;
  box-shadow: 0 0 16px rgba(75, 196, 255, 0.15);
}

.guide-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #96F5A2;
  box-shadow: 0 0 8px #96F5A2;
  animation: pulseDot 2s infinite ease-in-out;
}

.guide-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 16px;
}

.guide-title .text-cyan {
  color: #4BC4FF;
  background: linear-gradient(135deg, #A4F3FC 0%, #4BC4FF 50%, #96F5A2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.guide-subtitle {
  font-size: 1.1rem;
  color: #98A9BF;
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
}

/* Nota Introdutória do Especialista */
.guide-intro-callout {
  background: linear-gradient(135deg, rgba(74, 93, 129, 0.25) 0%, rgba(10, 18, 32, 0.75) 100%);
  border: 1px solid rgba(164, 243, 252, 0.3);
  border-left: 4px solid #4BC4FF;
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.guide-intro-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(75, 196, 255, 0.12);
  border: 1px solid rgba(75, 196, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A4F3FC;
  flex-shrink: 0;
}

.guide-intro-text {
  font-size: 1.05rem;
  color: #D1DDEB;
  line-height: 1.6;
  margin: 0;
}

/* Diagrama / Fluxo Tecnológico de Como Funciona */
.guide-flow-card {
  background: rgba(14, 22, 38, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(74, 93, 129, 0.4);
  border-radius: 20px;
  padding: 38px;
  margin-bottom: 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.guide-flow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #BA5F73, #4BC4FF, #96F5A2, #A4F3FC);
}

.flow-steps-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.flow-node {
  background: rgba(8, 14, 26, 0.9);
  border: 1px solid rgba(74, 93, 129, 0.45);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.flow-node:hover {
  transform: translateY(-4px);
  border-color: #4BC4FF;
  box-shadow: 0 10px 25px rgba(75, 196, 255, 0.15);
}

.flow-node--accent {
  border-color: rgba(150, 245, 162, 0.5);
  background: linear-gradient(180deg, rgba(150, 245, 162, 0.08) 0%, rgba(8, 14, 26, 0.95) 100%);
}

.flow-node-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.flow-node-tag--source {
  background: rgba(74, 93, 129, 0.3);
  color: #A4F3FC;
  border: 1px solid rgba(164, 243, 252, 0.3);
}

.flow-node-tag--target {
  background: rgba(150, 245, 162, 0.2);
  color: #96F5A2;
  border: 1px solid rgba(150, 245, 162, 0.4);
}

.flow-node-tag--google {
  background: rgba(75, 196, 255, 0.2);
  color: #4BC4FF;
  border: 1px solid rgba(75, 196, 255, 0.4);
}

.flow-node-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 93, 129, 0.25);
  color: #FFFFFF;
}

.flow-node-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.flow-node-desc {
  font-size: 0.85rem;
  color: #98A9BF;
  line-height: 1.45;
  margin: 0;
}

.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 5px;
}

.flow-connector-line {
  display: flex;
  align-items: center;
  color: #4BC4FF;
}

.flow-connector-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #A4F3FC;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: rgba(10, 20, 36, 0.8);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(74, 93, 129, 0.4);
}

/* 3 Pilares em Cards Rápidos */
.guide-key-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guide-point-card {
  background: rgba(10, 17, 30, 0.7);
  border: 1px solid rgba(74, 93, 129, 0.35);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.3s ease;
}

.guide-point-card:hover {
  border-color: #4BC4FF;
  background: rgba(12, 22, 40, 0.85);
  transform: translateY(-2px);
}

.guide-point-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.guide-point-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(75, 196, 255, 0.15);
  color: #A4F3FC;
}

.guide-point-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.guide-point-text {
  font-size: 0.9rem;
  color: #98A9BF;
  line-height: 1.5;
  margin: 0;
}

/* SEÇÃO 2: ANALOGIA DA CIDADE (INTERATIVA) */
.analogia-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.analogia-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 12px;
  background: rgba(14, 22, 38, 0.8);
  border: 1px solid rgba(74, 93, 129, 0.4);
  color: #98A9BF;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.analogia-tab-btn:hover {
  color: #FFFFFF;
  border-color: #4BC4FF;
  background: rgba(18, 30, 52, 0.9);
}

.analogia-tab-btn.active {
  color: #060B14;
  background: #A4F3FC;
  border-color: #A4F3FC;
  box-shadow: 0 0 20px rgba(164, 243, 252, 0.4);
}

.analogia-tab-btn.active.btn-scenario-1 {
  background: linear-gradient(135deg, #96F5A2 0%, #4BC4FF 100%);
  border-color: #96F5A2;
  color: #060B14;
}

.analogia-tab-btn.active.btn-scenario-2 {
  background: linear-gradient(135deg, #BA5F73 0%, #E87A90 100%);
  border-color: #BA5F73;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(186, 95, 115, 0.4);
}

.analogia-tab-btn.active.btn-scenario-3 {
  background: linear-gradient(135deg, #4A5D81 0%, #7D92B9 100%);
  border-color: #7D92B9;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(74, 93, 129, 0.4);
}

/* Grid de Cenários da Cidade */
.analogia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 40px;
}

.scenario-card {
  background: rgba(14, 22, 38, 0.7);
  border: 1px solid rgba(74, 93, 129, 0.35);
  border-radius: 20px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.scenario-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.scenario-card--success {
  border-color: rgba(150, 245, 162, 0.4);
}

.scenario-card--success::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #96F5A2, #4BC4FF);
}

.scenario-card--danger {
  border-color: rgba(186, 95, 115, 0.4);
}

.scenario-card--danger::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #BA5F73, #FF829D);
}

.scenario-card--neutral {
  border-color: rgba(74, 93, 129, 0.5);
}

.scenario-card--neutral::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4A5D81, #A4F3FC);
}

.scenario-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  width: fit-content;
}

.scenario-badge--success {
  background: rgba(150, 245, 162, 0.15);
  color: #96F5A2;
  border: 1px solid rgba(150, 245, 162, 0.35);
}

.scenario-badge--danger {
  background: rgba(186, 95, 115, 0.15);
  color: #FF94A8;
  border: 1px solid rgba(186, 95, 115, 0.35);
}

.scenario-badge--neutral {
  background: rgba(74, 93, 129, 0.25);
  color: #A4F3FC;
  border: 1px solid rgba(164, 243, 252, 0.3);
}

.scenario-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.3;
}

.scenario-story-box {
  background: rgba(6, 11, 20, 0.6);
  border: 1px solid rgba(74, 93, 129, 0.25);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
}

.scenario-story-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4BC4FF;
  margin-bottom: 6px;
}

.scenario-story-text {
  font-size: 0.92rem;
  color: #CAD5E2;
  line-height: 1.55;
  margin: 0;
}

.scenario-google-box {
  background: rgba(10, 18, 32, 0.85);
  border-radius: 12px;
  padding: 18px;
  margin-top: auto;
  border-left: 3px solid;
}

.scenario-card--success .scenario-google-box {
  border-color: #96F5A2;
}

.scenario-card--danger .scenario-google-box {
  border-color: #BA5F73;
}

.scenario-card--neutral .scenario-google-box {
  border-color: #A4F3FC;
}

.scenario-google-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.scenario-google-text {
  font-size: 0.88rem;
  color: #98A9BF;
  line-height: 1.5;
  margin: 0;
}

/* Banner de Conclusão da Analogia */
.analogia-takeaway {
  background: linear-gradient(135deg, rgba(74, 93, 129, 0.3) 0%, rgba(10, 19, 34, 0.9) 100%);
  border: 1px solid rgba(164, 243, 252, 0.4);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.takeaway-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.takeaway-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(150, 245, 162, 0.15);
  border: 1px solid rgba(150, 245, 162, 0.4);
  color: #96F5A2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.takeaway-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.takeaway-text span {
  color: #A4F3FC;
}

/* SEÇÃO 3: OS 4 PILARES DO PORQUE SÃO IMPORTANTES */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pillar-card {
  background: rgba(14, 22, 38, 0.7);
  border: 1px solid rgba(74, 93, 129, 0.35);
  border-radius: 18px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: #4BC4FF;
  box-shadow: 0 12px 32px rgba(75, 196, 255, 0.15);
  background: rgba(16, 26, 46, 0.9);
}

.pillar-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(74, 93, 129, 0.25);
  border: 1px solid rgba(164, 243, 252, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A4F3FC;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon-wrap {
  background: #4BC4FF;
  color: #060B14;
  border-color: #4BC4FF;
  box-shadow: 0 0 20px rgba(75, 196, 255, 0.5);
}

.pillar-number {
  position: absolute;
  top: 24px;
  right: 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(74, 93, 129, 0.4);
}

.pillar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.35;
}

.pillar-desc {
  font-size: 0.92rem;
  color: #98A9BF;
  line-height: 1.55;
  margin: 0;
}

.pillar-tag {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #96F5A2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SEÇÃO 4: COMPARATIVO QUALIDADE VS QUANTIDADE */
.compare-container-box {
  background: rgba(14, 22, 38, 0.8);
  border: 1px solid rgba(74, 93, 129, 0.4);
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.compare-column {
  border-radius: 18px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.compare-column--quality {
  background: linear-gradient(180deg, rgba(150, 245, 162, 0.06) 0%, rgba(10, 18, 32, 0.7) 100%);
  border: 1px solid rgba(150, 245, 162, 0.4);
  box-shadow: 0 0 25px rgba(150, 245, 162, 0.08);
}

.compare-column--toxic {
  background: linear-gradient(180deg, rgba(186, 95, 115, 0.06) 0%, rgba(10, 18, 32, 0.7) 100%);
  border: 1px solid rgba(186, 95, 115, 0.4);
  box-shadow: 0 0 25px rgba(186, 95, 115, 0.08);
}

.compare-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(74, 93, 129, 0.3);
}

.compare-col-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-col-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-column--quality .compare-col-icon {
  background: rgba(150, 245, 162, 0.2);
  color: #96F5A2;
  border: 1px solid rgba(150, 245, 162, 0.5);
}

.compare-column--toxic .compare-col-icon {
  background: rgba(186, 95, 115, 0.2);
  color: #FF829D;
  border: 1px solid rgba(186, 95, 115, 0.5);
}

.compare-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.compare-badge-pill {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
}

.compare-column--quality .compare-badge-pill {
  background: #96F5A2;
  color: #060B14;
}

.compare-column--toxic .compare-badge-pill {
  background: #BA5F73;
  color: #FFFFFF;
}

.compare-rows-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.compare-row-item {
  background: rgba(6, 11, 20, 0.55);
  border: 1px solid rgba(74, 93, 129, 0.25);
  border-radius: 12px;
  padding: 16px 18px;
}

.compare-row-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #A4F3FC;
  margin-bottom: 6px;
}

.compare-row-val {
  font-size: 0.95rem;
  color: #D1DDEB;
  line-height: 1.5;
  margin: 0;
}

.compare-column--quality .compare-row-val strong {
  color: #96F5A2;
}

.compare-column--toxic .compare-row-val strong {
  color: #FF94A8;
}

/* Alerta de Custo-Benefício e Qualidade */
.roi-advice-box {
  background: linear-gradient(135deg, rgba(74, 93, 129, 0.25) 0%, rgba(186, 95, 115, 0.15) 50%, rgba(10, 18, 32, 0.9) 100%);
  border: 1px solid rgba(186, 95, 115, 0.4);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.roi-advice-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(186, 95, 115, 0.2);
  border: 1px solid rgba(186, 95, 115, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF94A8;
  flex-shrink: 0;
}

.roi-advice-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.roi-advice-content p {
  font-size: 0.96rem;
  color: #CAD5E2;
  line-height: 1.6;
  margin: 0;
}

.roi-highlight {
  color: #96F5A2;
  font-weight: 700;
}

/* SEÇÃO 5: CTA FINAL */
.guide-cta-section {
  padding: 90px 0 110px;
  background: radial-gradient(circle at 50% 50%, rgba(75, 196, 255, 0.08) 0%, #060B14 70%);
  position: relative;
}

.guide-cta-card {
  background: linear-gradient(135deg, rgba(14, 22, 38, 0.9) 0%, rgba(20, 32, 56, 0.75) 100%);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(164, 243, 252, 0.35);
  border-radius: 28px;
  padding: 56px 44px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(75, 196, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.guide-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4BC4FF, #96F5A2, #BA5F73, transparent);
}

.guide-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 16px 0;
  line-height: 1.25;
}

.guide-cta-desc {
  font-size: 1.05rem;
  color: #98A9BF;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 34px;
}

/* Responsividade da Nova Página */
@media (max-width: 1024px) {
  .flow-steps-diagram {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .flow-connector {
    transform: rotate(90deg);
    padding: 10px 0;
  }
  .guide-key-points {
    grid-template-columns: 1fr;
  }
  .analogia-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .guide-section {
    padding: 55px 0;
  }
  .guide-flow-card {
    padding: 24px 18px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .compare-container-box {
    padding: 22px 16px;
  }
  .compare-column {
    padding: 20px 16px;
  }
  .roi-advice-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 18px;
  }
  .analogia-takeaway {
    flex-direction: column;
    text-align: center;
  }
  .takeaway-content {
    flex-direction: column;
  }
  .guide-cta-card {
    padding: 38px 20px;
  }
}


/* Link para o Bloco 1 (O que são backlinks?) em toda a extensão */
a.iis-block,
.iis-block-link {
  display: block;
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
}

a.iis-block:hover,
.iis-block-link:hover {
  cursor: pointer;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}

a.iis-block .iis-block-title,
.iis-block-link .iis-block-title {
  color: #1E2B3C;
  text-decoration: none !important;
  transition: color 0.25s ease;
}

a.iis-block:hover .iis-block-title,
.iis-block-link:hover .iis-block-title,
a.iis-block .iis-title-link:hover {
  color: #FFFFFF;
}

.iis-title-link {
  display: inline-block;
  color: inherit;
  text-decoration: none !important;
}


/* Estilos de Link para os Grandes Players com Abertura Externa */
a.da-player-item {
  display: block;
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
}

a.da-player-item:hover {
  text-decoration: none !important;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(164, 243, 252, 0.45);
  box-shadow: 0 6px 20px rgba(75, 196, 255, 0.16);
  transform: translateX(6px);
}

a.da-player-item:hover .da-player-name {
  color: #FFFFFF;
}


/* ======================================================= */
/* ESTILOS DO RODAPÉ (FOOTER) MODERNO & TECNOLÓGICO        */
/* ======================================================= */
.site-footer {
  background: radial-gradient(circle at 50% 0%, rgba(75, 196, 255, 0.22) 0%, transparent 65%),
              linear-gradient(180deg, #243E66 0%, #172B47 100%);
  color: #E2E8F0;
  border-top: 1px solid rgba(164, 243, 252, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  padding: 70px 0 25px 0;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(75, 196, 255, 0.6) 50%, transparent 100%);
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(75, 196, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  margin-bottom: 50px;
}

/* LADO ESQUERDO: SOBRE + CONTATO */
.footer-brand-contact-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(75, 196, 255, 0.3));
  transition: transform 0.3s ease;
}

.footer-logo-wrap:hover .footer-logo-img {
  transform: scale(1.05) translateY(-2px);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.2px;
}

.footer-logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: #4BC4FF;
  letter-spacing: 0.8px;
}

.footer-description {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #CBD5E1;
  margin-bottom: 24px;
}

/* REDES SOCIAIS */
.footer-social-wrap {
  margin-top: auto;
}

.footer-social-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #F8FAFC;
  margin-bottom: 12px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background: rgba(75, 196, 255, 0.2);
  border-color: #4BC4FF;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(75, 196, 255, 0.35);
}

/* BLOCO DE CONTATO */
.footer-block-heading {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 22px;
}

.heading-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, #96F5A2, #4BC4FF);
  border-radius: 2px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-link-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.2s ease;
}

.contact-link-row:hover {
  transform: translateX(4px);
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #96F5A2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.contact-link-row:hover .contact-icon-box {
  background: rgba(16, 185, 129, 0.22);
  border-color: #96F5A2;
  box-shadow: 0 0 14px rgba(150, 245, 162, 0.35);
}

.contact-icon--green {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.35);
  color: #25D366;
}

.contact-icon--email {
  background: rgba(75, 196, 255, 0.12);
  border-color: rgba(75, 196, 255, 0.3);
  color: #4BC4FF;
}

.contact-link-row:hover .contact-icon--email {
  border-color: #4BC4FF;
  box-shadow: 0 0 14px rgba(75, 196, 255, 0.35);
}

.contact-text-box {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #64748B;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: #F1F5F9;
}

.highlight-phone {
  color: #A4F3FC;
  font-weight: 700;
  font-size: 0.96rem;
}

/* LADO DIREITO: NOSSOS SERVIÇOS */
.footer-services-col {
  display: flex;
  flex-direction: column;
}

.footer-services-header {
  margin-bottom: 20px;
}

.footer-services-sub {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-top: -12px;
  margin-bottom: 18px;
}

.footer-services-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-serv-category {
  display: flex;
  flex-direction: column;
}

.serv-category-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.badge-blue {
  background: rgba(75, 196, 255, 0.12);
  color: #4BC4FF;
  border: 1px solid rgba(75, 196, 255, 0.3);
}

.badge-green {
  background: rgba(150, 245, 162, 0.12);
  color: #96F5A2;
  border: 1px solid rgba(150, 245, 162, 0.3);
}

.serv-category-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.footer-serv-cards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-serv-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-serv-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(75, 196, 255, 0.35);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.fserv-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.footer-serv-card:hover .fserv-icon {
  transform: scale(1.1);
}

.fserv-cyan {
  background: rgba(75, 196, 255, 0.15);
  color: #4BC4FF;
}

.fserv-blue {
  background: rgba(59, 130, 246, 0.18);
  color: #60A5FA;
}

.fserv-red {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
}

.fserv-pink {
  background: rgba(236, 72, 153, 0.15);
  color: #F472B6;
}

.fserv-emerald {
  background: rgba(150, 245, 162, 0.15);
  color: #96F5A2;
}

.fserv-purple {
  background: rgba(186, 95, 115, 0.18);
  color: #F472B6;
}

.fserv-indigo {
  background: rgba(99, 102, 241, 0.18);
  color: #818CF8;
}

.fserv-teal {
  background: rgba(164, 243, 252, 0.15);
  color: #A4F3FC;
}

.fserv-info {
  display: flex;
  flex-direction: column;
}

.fserv-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: #F8FAFC;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.footer-serv-card:hover .fserv-name {
  color: #4BC4FF;
}

.fserv-desc {
  font-size: 0.72rem;
  color: #94A3B8;
  line-height: 1.35;
  margin-top: 2px;
}

/* BARRA INFERIOR (COPYRIGHT) */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.82rem;
  color: #64748B;
}

.footer-bottom-badges {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94A3B8;
}

.footer-back-to-top {
  color: #4BC4FF;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(75, 196, 255, 0.08);
  transition: all 0.2s ease;
}

.footer-back-to-top:hover {
  background: rgba(75, 196, 255, 0.2);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 20px 0;
  }
  
  .footer-brand-contact-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-services-subgrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .footer-bottom-badges {
    flex-direction: column;
    gap: 10px;
  }
}


/* 3 Colunas de Serviços no Rodapé */
.footer-main-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 45px;
  margin-bottom: 50px;
}

.footer-services-subgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.badge-cyan {
  background: rgba(164, 243, 252, 0.12);
  color: #A4F3FC;
  border: 1px solid rgba(164, 243, 252, 0.3);
}

.fserv-fb {
  background: rgba(24, 119, 242, 0.18);
  color: #60A5FA;
}

.fserv-tiktok {
  background: rgba(255, 0, 79, 0.16);
  color: #A4F3FC;
}

.fserv-twitter {
  background: rgba(29, 161, 242, 0.18);
  color: #38BDF8;
}

.fserv-linkedin {
  background: rgba(10, 102, 194, 0.18);
  color: #60A5FA;
}

@media (max-width: 1360px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 1024px) {
  .footer-services-subgrid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-brand-contact-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-services-subgrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* ======================================================= */
/* PÁGINA: BACKLINKS PARA SITES E LANDING PAGES            */
/* TEMA CLARO EM TONS DE AZUL (LIGHT BLUE THEME)           */
/* ======================================================= */
body.light-blue-theme {
  background-color: #F8FAFD;
  color: #1E293B;
}

.page-lp-sites {
  overflow-x: hidden;
}

.lp-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

/* HERO TIPOGRÁFICO CLARO (SEM BANNER) */
.lp-hero-light {
  padding: 130px 0 65px 0;
  background: linear-gradient(180deg, #EBF5FE 0%, #F8FAFD 100%);
  position: relative;
  text-align: center;
  border-bottom: 1px solid rgba(2, 132, 199, 0.12);
}

.lp-hero-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 380px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.14) 0%, rgba(164, 243, 252, 0.08) 50%, transparent 70%);
  pointer-events: none;
}

.lp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 20px;
}

.lp-breadcrumb a {
  color: #0284C7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp-breadcrumb a:hover {
  color: #0369A1;
  text-decoration: underline;
}

.bc-sep {
  color: #CBD5E1;
}

.bc-current {
  color: #1E293B;
  font-weight: 700;
}

.lp-hero-badge-wrap {
  margin-bottom: 18px;
}

.lp-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: #E0F2FE;
  border: 1px solid #BAE6FD;
  color: #0284C7;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.pill-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0284C7;
  box-shadow: 0 0 8px #0284C7;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.lp-hero-h1 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.75rem;
  font-weight: 900;
  color: #0F294A;
  line-height: 1.18;
  max-width: 960px;
  margin: 0 auto 20px auto;
  letter-spacing: -0.5px;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #0284C7 0%, #1D4ED8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-hero-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #475569;
  max-width: 820px;
  margin: 0 auto 36px auto;
}

/* CHIPS DE MÉTRICAS */
.lp-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.metric-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  background: #FFFFFF;
  border: 1px solid rgba(2, 132, 199, 0.22);
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.08);
  transition: all 0.25s ease;
}

.metric-chip:hover {
  transform: translateY(-3px);
  border-color: #0284C7;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.16);
}

.metric-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E0F2FE;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-chip-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.metric-chip-info strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0F294A;
  line-height: 1.2;
}

.metric-chip-info span {
  font-size: 0.74rem;
  color: #64748B;
}

/* SEÇÕES GERAIS */
.lp-section {
  padding: 75px 0;
  position: relative;
}

.bg-blue-tint {
  background: linear-gradient(180deg, #F0F7FE 0%, #F8FAFD 100%);
  border-top: 1px solid rgba(2, 132, 199, 0.08);
  border-bottom: 1px solid rgba(2, 132, 199, 0.08);
}

.section-tag-inline {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.9px;
  color: #0284C7;
  background: #E0F2FE;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.lp-section-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.1rem;
  font-weight: 800;
  color: #0F294A;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.lp-lead-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 14px;
}

.lp-sub-intro {
  font-size: 0.96rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 22px;
}

/* LAYOUT SPLIT (TEXTO + IMAGEM) */
.lp-split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.lp-split-layout.reverse-order {
  grid-template-columns: 0.85fr 1.15fr;
}

/* CARDS DE BULLETS INTERATIVOS */
.lp-interactive-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bullet-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15, 41, 74, 0.04);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.bullet-card:hover {
  transform: translateX(6px);
  border-color: #0284C7;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.12);
}

.bullet-card.highlight-glow {
  border-color: rgba(2, 132, 199, 0.4);
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
}

.bullet-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.bullet-card:hover .bullet-icon-box {
  transform: scale(1.08);
}

.bg-blue-light { background: #E0F2FE; border: 1px solid #BAE6FD; }
.bg-cyan-light { background: #ECFEFF; border: 1px solid #A5F3FC; }
.bg-indigo-light { background: #EEF2FF; border: 1px solid #C7D2FE; }
.bg-emerald-light { background: #F0FDF4; border: 1px solid #BBF7D0; }
.bg-purple-light { background: #FAF5FF; border: 1px solid #E9D5FF; }
.bg-blue-accent { background: #0284C7; border: 1px solid #0284C7; color: #FFFFFF !important; }
.bg-blue-accent svg { stroke: #FFFFFF !important; }

.bullet-content {
  display: flex;
  flex-direction: column;
}

.bullet-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F294A;
  margin: 0 0 4px 0;
}

.bullet-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}

/* IMAGENS ILUSTRATIVAS FLUTUANTES */
.media-illustration-card {
  background: #FFFFFF;
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 12px 36px rgba(15, 41, 74, 0.09);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.media-illustration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(2, 132, 199, 0.18);
}

.media-badge-top {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(15, 41, 74, 0.88);
  color: #A4F3FC;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(164, 243, 252, 0.3);
  z-index: 2;
}

.lp-inline-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.media-caption {
  font-size: 0.8rem;
  color: #64748B;
  padding: 10px 6px 4px 6px;
  line-height: 1.45;
}

.media-caption strong {
  color: #0F294A;
}

/* DESTAQUE CONCEITUAL (TERRENO ALUGADO VS PRÓPRIO) */
.lp-concept-box {
  background: linear-gradient(135deg, #E0F2FE 0%, #FFFFFF 100%);
  border: 1px solid #BAE6FD;
  border-radius: 18px;
  padding: 24px 30px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.06);
}

.concept-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid #BAE6FD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.1);
}

.concept-text-wrap {
  display: flex;
  flex-direction: column;
}

.concept-pretitle {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #0284C7;
  margin-bottom: 4px;
}

.concept-quote {
  font-size: 1.08rem;
  line-height: 1.55;
  color: #0F294A;
  margin: 0;
  font-style: italic;
}

/* ANALOGIA DO BECO SEM SAÍDA */
.lp-analogy-box {
  background: #EFF6FF;
  border-left: 5px solid #0284C7;
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.05);
}

.warning-symbol {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #BFDBFE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.analogy-heading {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F294A;
  margin: 0 0 6px 0;
}

.analogy-p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
  margin: 0;
}

/* BLOCO FINAL: CTA & DIAGNÓSTICO */
.section-lp-cta {
  padding: 85px 0;
}

.lp-final-card {
  background: linear-gradient(135deg, #0F294A 0%, #0A1B30 100%);
  color: #FFFFFF;
  border-radius: 28px;
  padding: 55px 45px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(15, 41, 74, 0.3);
  border: 1px solid rgba(75, 196, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.lp-final-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 250px;
  background: radial-gradient(circle, rgba(75, 196, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.final-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(75, 196, 255, 0.15);
  border: 1px solid rgba(75, 196, 255, 0.35);
  color: #A4F3FC;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.final-question-h2 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.15rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.25;
  max-width: 880px;
  margin: 0 auto 18px auto;
  letter-spacing: -0.3px;
}

.final-question-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #CBD5E1;
  max-width: 780px;
  margin: 0 auto 32px auto;
}

/* SELETOR INTERATIVO */
.lp-selector-widget {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 22px 26px;
  max-width: 860px;
  margin: 0 auto 36px auto;
}

.widget-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #A4F3FC;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.widget-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.widget-opt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #E2E8F0;
  cursor: pointer;
  transition: all 0.22s ease;
  user-select: none;
}

.widget-opt-btn input[type="checkbox"] {
  accent-color: #00A3FF;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.widget-opt-btn.active {
  background: rgba(2, 132, 199, 0.25);
  border-color: #00A3FF;
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 163, 255, 0.25);
}

/* BOTÕES CTA */
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}

.btn-lp-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(90deg, #00A3FF 0%, #0284C7 100%);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 0.96rem;
  letter-spacing: 0.3px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 6px 25px rgba(2, 132, 199, 0.45);
  transition: all 0.25s ease;
}

.btn-lp-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(2, 132, 199, 0.6);
  background: linear-gradient(90deg, #38BDF8 0%, #0284C7 100%);
}

.btn-lp-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.btn-lp-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.final-card-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #94A3B8;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .lp-hero-h1 {
    font-size: 2.2rem;
  }

  .lp-split-layout,
  .lp-split-layout.reverse-order {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .media-illustration-card {
    max-width: 550px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .lp-hero-light {
    padding: 110px 0 45px 0;
  }

  .lp-hero-h1 {
    font-size: 1.85rem;
  }

  .lp-section-title {
    font-size: 1.7rem;
  }

  .final-question-h2 {
    font-size: 1.6rem;
  }

  .lp-final-card {
    padding: 35px 22px;
  }

  .btn-lp-primary,
  .btn-lp-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Links para títulos e ícones dos cards de nichos */
.niche-card-title a,
.niche-card-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.niche-card-title a:hover,
.niche-card-title-link:hover {
  color: var(--color-primary);
}
.niche-icon-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.niche-icon-link:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.15));
}

/* ======================================================= */
/* BOTÃO DE INÍCIO AO LADO DO LOGO                         */
/* ======================================================= */
.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.btn-inicio-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(75, 196, 255, 0.08);
  border: 1px solid rgba(75, 196, 255, 0.3);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(13, 33, 55, 0.04);
}

.btn-inicio-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  transition: transform 0.25s ease;
}

.btn-inicio-header:hover {
  background: rgba(75, 196, 255, 0.16);
  color: #0284c7;
  border-color: rgba(75, 196, 255, 0.55);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(75, 196, 255, 0.22);
}

.btn-inicio-header:hover .btn-inicio-icon {
  transform: scale(1.15);
}

/* Responsividade do Botão de Início */
@media (max-width: 640px) {
  .header-left {
    gap: 10px;
  }
  .btn-inicio-header {
    padding: 6px 12px;
    font-size: 0.78rem;
    gap: 6px;
  }
  .btn-inicio-icon svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 420px) {
  .btn-inicio-text {
    display: none;
  }
  .btn-inicio-header {
    padding: 8px;
    border-radius: 50%;
  }
}


/* ==========================================================================
   NOVA PÁGINA: CONSULTORIA DE SEO ON-PAGE (LAYOUT CLARO COM TONS DE AZUL)
   ========================================================================== */

/* Seção de Introdução (Sem banner, layout aberto e limpo) */
.seo-intro-hero {
  padding: calc(var(--header-height) + 40px) 0 40px;
  background: radial-gradient(circle at 50% 20%, #EBF4FC 0%, #F5F9FD 60%, #FFFFFF 100%);
  position: relative;
  text-align: center;
}

.seo-intro-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seo-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E1EFFE;
  color: #0056B3;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid #BFDBFE;
  box-shadow: 0 4px 14px rgba(0, 86, 179, 0.08);
  margin-bottom: 24px;
}

.seo-badge-pulse {
  width: 9px;
  height: 9px;
  background: #0080FF;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 128, 255, 0.7);
  animation: pulseBlue 2s infinite;
}

@keyframes pulseBlue {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 128, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 128, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 128, 255, 0); }
}

.seo-intro-title {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #0F172A;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.seo-intro-title .gradient-text {
  background: linear-gradient(135deg, #0056B3 0%, #0080FF 50%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seo-intro-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.75;
  color: #334155;
  margin-bottom: 36px;
  text-align: center;
}

.seo-intro-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 820px;
  margin-top: 10px;
}

.stat-bubble {
  background: #FFFFFF;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
  padding: 18px 14px;
  box-shadow: 0 8px 24px rgba(0, 71, 171, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-bubble:hover {
  transform: translateY(-4px);
  border-color: #93C5FD;
}

.bubble-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0056B3;
  margin-bottom: 4px;
}

.bubble-txt {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Seção de Pilares */
.seo-pillars-section {
  padding: 60px 0 90px;
  background: #F8FAFC;
}

.section-heading-center {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 50px;
}

.sub-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0066CC;
  background: #EBF5FF;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title-clean {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc-clean {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #475569;
}

/* Cards dos Pilares */
.seo-pillar-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 44px;
  margin-bottom: 36px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 71, 171, 0.08);
  border-color: #BFDBFE;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.pillar-grid.reverse-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.pillar-grid.reverse-grid .pillar-info {
  order: 2;
}

.pillar-grid.reverse-grid .pillar-visual-media {
  order: 1;
}

.pillar-index-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0056B3, #0080FF);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.pillar-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 14px;
  line-height: 1.25;
}

.pillar-intro {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 24px;
}

/* Lista de Bullet Points Modernos */
.seo-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seo-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #F8FAFC;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #EDF2F7;
  color: #334155;
  font-size: 0.96rem;
  line-height: 1.55;
  transition: background 0.2s ease, transform 0.2s ease;
}

.seo-bullet-list li:hover {
  background: #F0F7FF;
  border-color: #BFDBFE;
  transform: translateX(4px);
}

.bullet-icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #0080FF;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Moldura e Estilização das Imagens Pequenas entre o Texto */
.media-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px -8px rgba(0, 71, 171, 0.16);
  border: 1px solid #DBEAFE;
  background: #FFFFFF;
}

.pillar-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-frame:hover .pillar-img {
  transform: scale(1.02);
}

.media-caption {
  padding: 12px 16px;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  font-size: 0.84rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
}

.caption-tag {
  background: #0056B3;
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Grid com 2 cards paralelos (Pilares 3 e 4) */
.seo-twin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 36px;
}

.seo-twin-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 38px 32px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.seo-twin-card:hover {
  transform: translateY(-4px);
  border-color: #93C5FD;
}

/* Pilar 5 (Métricas e Relatórios) */
.metrics-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.metric-item-box {
  display: flex;
  gap: 16px;
  background: #F0F7FF;
  border: 1px solid #BFDBFE;
  padding: 24px;
  border-radius: 16px;
  align-items: flex-start;
}

.metric-item-box .box-icon {
  font-size: 1.8rem;
  background: #FFFFFF;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 71, 171, 0.08);
}

.metric-item-box strong {
  display: block;
  font-size: 1.05rem;
  color: #0F172A;
  margin-bottom: 6px;
}

.metric-item-box p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}

/* Pilar 6 (Diferencial 16 Anos) */
.seo-diferencial-card {
  background: linear-gradient(135deg, #0A192F 0%, #0F2D59 100%);
  border-radius: 24px;
  padding: 46px;
  color: #FFFFFF;
  margin-bottom: 48px;
  box-shadow: 0 20px 48px -10px rgba(10, 25, 47, 0.25);
}

.seo-diferencial-card .diferencial-badge {
  display: inline-block;
  background: rgba(75, 196, 255, 0.2);
  color: #7DD3FC;
  border: 1px solid rgba(75, 196, 255, 0.4);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.seo-diferencial-card .diferencial-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.seo-diferencial-card .diferencial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #CBD5E1;
  margin-bottom: 14px;
}

.diferencial-highlight-box {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #38BDF8;
  padding: 18px 20px;
  border-radius: 0 12px 12px 0;
  margin-top: 20px;
}

.diferencial-highlight-box p {
  color: #E2E8F0;
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

.seo-diferencial-card .media-frame {
  border-color: rgba(255, 255, 255, 0.2);
}

.seo-diferencial-card .media-caption {
  background: #0D1E3A;
  color: #CBD5E1;
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* Banner de Chamada para Ação (CTA) */
.seo-cta-banner {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
  border: 2px solid #BFDBFE;
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 86, 179, 0.08);
}

.seo-cta-content {
  max-width: 760px;
  margin: 0 auto;
}

.cta-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0056B3;
  margin-bottom: 10px;
}

.cta-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0056B3 0%, #0077EE 100%);
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 86, 179, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 86, 179, 0.4);
  color: #FFFFFF;
}

.btn-outline-clean {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid #CBD5E1;
  color: #334155;
  background: #FFFFFF;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-outline-clean:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
  color: #0F172A;
}

/* Responsividade da Página de Consultoria */
@media (max-width: 991px) {
  .pillar-grid, .pillar-grid.reverse-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pillar-grid.reverse-grid .pillar-info {
    order: 1;
  }
  .pillar-grid.reverse-grid .pillar-visual-media {
    order: 2;
  }
  .seo-twin-grid {
    grid-template-columns: 1fr;
  }
  .metrics-two-col {
    grid-template-columns: 1fr;
  }
  .seo-intro-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .seo-pillar-card, .seo-diferencial-card {
    padding: 28px 20px;
  }
  .seo-twin-card {
    padding: 24px 18px;
  }
  .seo-intro-stats-bar {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   SEÇÃO: PASSOS PARA COMPRA E ENTREGA (VERSÃO MINIMALISTA PARA SUBPÁGINAS)
   ========================================================================== */
.steps-section.steps-section-minimal {
  padding: 44px 0 50px;
  background: linear-gradient(180deg, #0A1220 0%, #0D1628 50%, #0B1323 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.steps-section-minimal .steps-bg-glow {
  top: 15%;
  width: 700px;
  height: 280px;
  opacity: 0.6;
}

.steps-section-minimal .steps-header {
  margin-bottom: 28px;
  max-width: 780px;
}

.steps-section-minimal .steps-badge {
  padding: 4px 14px;
  font-size: 0.74rem;
  margin-bottom: 12px;
  border-color: rgba(150, 245, 162, 0.28);
}

.steps-section-minimal .steps-title {
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.steps-section-minimal .steps-subtitle {
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 620px;
}

.steps-section-minimal .steps-grid {
  gap: 14px;
  margin-bottom: 0;
}

.steps-section-minimal .step-card {
  padding: 20px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.steps-section-minimal .step-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(150, 245, 162, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3), 0 0 15px rgba(150, 245, 162, 0.1);
}

.steps-section-minimal .step-top-bar {
  margin-bottom: 12px;
}

.steps-section-minimal .step-number {
  font-size: 1.45rem;
}

.steps-section-minimal .step-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.steps-section-minimal .step-name {
  font-size: 0.98rem;
  line-height: 1.32;
  margin-bottom: 8px;
  min-height: 2.65em;
}

.steps-section-minimal .step-desc {
  font-size: 0.82rem;
  line-height: 1.48;
  color: #8D9EBA;
  margin-bottom: 16px;
}

.steps-section-minimal .step-btn-readmore {
  padding: 7px 14px;
  font-size: 0.74rem;
  letter-spacing: 0.8px;
  gap: 6px;
  border-radius: 8px;
}

.steps-section-minimal .steps-cta-wrap {
  margin-top: 6px;
}

.steps-section-minimal .steps-cta-btn {
  padding: 12px 28px;
  font-size: 0.94rem;
  border-radius: 50px;
}

@media (max-width: 1100px) {
  .steps-section-minimal .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .steps-section-minimal {
    padding: 34px 0 40px;
  }

  .steps-section-minimal .steps-header {
    margin-bottom: 22px;
  }

  .steps-section-minimal .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps-section-minimal .step-card {
    padding: 18px 16px;
  }

  .steps-section-minimal .step-name {
    min-height: auto;
  }
}


/* ==========================================================================
   SEÇÃO: COISAS IMPORTANTES (VERSÃO MINIMALISTA PARA SUBPÁGINAS)
   ========================================================================== */
.important-info-section.iis-minimal {
  padding: 36px 0 46px;
  background: linear-gradient(135deg,
    #8A2E47 0%,
    #A84D63 40%,
    #BA5F73 70%,
    #8A2E47 100%
  );
}

.iis-minimal .important-info-header {
  max-width: 780px;
  margin-bottom: 24px;
}

.iis-minimal .iis-eyebrow {
  display: none;
}

.iis-minimal .important-info-title {
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  text-shadow: 0 0 20px rgba(164, 243, 252, 0.4), 0 2px 10px rgba(0, 0, 0, 0.2);
}

.iis-minimal .iis-blocks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  max-width: 960px;
  margin: 24px auto 0;
}

.iis-minimal .iis-blocks-grid > a:last-child {
  grid-column: span 2;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.iis-minimal .iis-block {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.iis-minimal .iis-block:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.iis-minimal .iis-block-header {
  padding: 12px 18px;
  gap: 12px;
}

.iis-minimal .iis-block-number {
  font-size: 0.88rem;
  min-width: 24px;
}

.iis-minimal .iis-block-title {
  font-size: 0.92rem;
  line-height: 1.35;
}

.iis-minimal .iis-block-arrow {
  width: 15px;
  height: 15px;
}

@media (max-width: 768px) {
  .important-info-section.iis-minimal {
    padding: 36px 0 42px;
  }

  .iis-minimal .iis-blocks-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .iis-minimal .iis-blocks-grid > a:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .iis-minimal .iis-block-header {
    padding: 11px 15px;
  }

  .iis-minimal .iis-block-title {
    font-size: 0.88rem;
  }
}


/* ==========================================================================
   SEÇÃO: BACKLINKS POR NICHO (VERSÃO MINIMALISTA PARA SUBPÁGINAS)
   ========================================================================== */
.niche-section.niche-section-minimal {
  padding: 40px 0 46px;
  background: linear-gradient(180deg, #F0F6FC 0%, #E8F1FA 100%);
  border-top: 1px solid rgba(13, 33, 55, 0.06);
  border-bottom: 1px solid rgba(13, 33, 55, 0.08);
}

.niche-section-minimal .niche-header {
  margin-bottom: 24px;
  max-width: 680px;
}

.niche-section-minimal .niche-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.niche-section-minimal .niche-subtitle {
  font-size: 0.9rem;
  line-height: 1.45;
}

.niche-section-minimal .niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.niche-section-minimal .niche-card {
  padding: 20px 14px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(13, 33, 55, 0.04);
}

.niche-section-minimal .niche-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(13, 33, 55, 0.09);
}

.niche-section-minimal .niche-icon-wrap {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.niche-section-minimal .niche-card-title {
  font-size: 0.94rem;
  line-height: 1.3;
  margin-bottom: 8px;
  min-height: 2.6em;
}

.niche-section-minimal .niche-card-desc {
  font-size: 0.78rem;
  line-height: 1.45;
  margin-bottom: 14px;
  color: #475569;
}

.niche-section-minimal .niche-card-btn {
  font-size: 0.76rem;
  gap: 5px;
}

@media (max-width: 1100px) {
  .niche-section-minimal .niche-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .niche-section-minimal {
    padding: 32px 0 38px;
  }

  .niche-section-minimal .niche-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .niche-section-minimal .niche-card {
    padding: 16px 12px 14px;
  }

  .niche-section-minimal .niche-card-title {
    min-height: auto;
  }
}
