/* ==========================================================================
   DESIGN SYSTEM PREMIUM (DARK ELEGANT & MDG IDENTIDADE)
   ========================================================================== */
:root {
  /* Cores Principais - Tema Luxo & Identidade Visual MDG */
  --bg-deep: #030712;      /* Preto de luxo profundo */
  --bg-dark: #131926;      /* Azul-cinza escuro corporativo premium */
  --bg-darker: #02040b;    /* Rodapé e tons de contraste mais profundos */
  --bg-glass: rgba(255, 255, 255, 0.02);
  --border-glass: rgba(255, 255, 255, 0.07);
  
  --primary: #0a0f1d;
  
  /* Cores extraídas do Logotipo da Agência MDG (Substituindo o Dourado) */
  --mdg-orange: #ea580c;   /* Laranja do logo */
  --mdg-green: #00cb66;    /* Verde vibrante do logo */
  --mdg-blue: #006ae4;     /* Azul vibrante do logo */
  --mdg-silver: #cbd5e1;   /* Prata/Cinza metálico do logo */
  
  --accent: var(--mdg-orange);       /* Laranja do logo como cor de destaque */
  --accent-light: #f97316;           /* Laranja mais claro para hovers */
  --accent-glow: rgba(234, 88, 12, 0.15);
  
  --convert: var(--mdg-green);       /* Verde de conversão */
  --convert-hover: #00b359;
  
  /* Cores de Texto */
  --text-light: #ffffff;
  --text-muted: #8b9bb4;   /* Cinza azulado suave */
  --text-dark: #f3f4f6;    /* Branco acinzentado de alto contraste */
  
  /* Fontes e Tipografia */
  --font-title: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Efeitos e Transições */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --container: 1440px;
  --transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --glow-shadow: 0 15px 40px -10px rgba(197, 168, 128, 0.15);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES GERAIS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  
  /* Suporte para Firefox scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--mdg-blue) var(--bg-deep);
}

/* Custom Scrollbar para Chrome, Edge e Safari */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--mdg-blue) 0%, var(--mdg-green) 50%, var(--mdg-orange) 100%);
  border-radius: 5px;
  border: 2px solid var(--bg-deep);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--mdg-orange) 0%, var(--mdg-green) 50%, var(--mdg-blue) 100%);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-deep);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-light);
}

.lp-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lp-narrow {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.lp-text-center {
  text-align: center;
}

/* ==========================================================================
   BOTÕES DE ALTA PERFORMANCE
   ========================================================================== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff !important;
}

.lp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(22, 163, 74, 0.25);
}

.lp-btn-primary {
  background: linear-gradient(to bottom, #00994d 0%, var(--mdg-green) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 203, 102, 0.3);
}

.lp-btn-primary:hover {
  background: linear-gradient(to bottom, #0050ac 0%, var(--mdg-blue) 100%);
  box-shadow: 0 12px 25px rgba(0, 106, 228, 0.4);
}

.lp-btn-outline {
  position: relative;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}

.lp-btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  padding: 2px; /* Espessura da borda */
  background: linear-gradient(to bottom, #00994d 0%, var(--mdg-green) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: var(--transition);
}

.lp-btn-outline:hover {
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 106, 228, 0.2);
}

.lp-btn-outline:hover::before {
  background: linear-gradient(to bottom, #0050ac 0%, var(--mdg-blue) 100%);
}

.lp-btn-large {
  padding: 1.2rem 2.8rem;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.lp-btn-full {
  width: 100%;
}

.lp-text-gradient {
  background: linear-gradient(135deg, var(--mdg-blue) 0%, var(--accent-light) 50%, var(--mdg-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(197, 168, 128, 0.08);
  color: var(--accent);
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(197, 168, 128, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   HEADER GLASSMORPHISM
   ========================================================================== */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 1.25rem 0;
  transition: var(--transition);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-logo-desktop {
  display: block;
  height: 65px; /* Aumentado para acompanhar o header */
  width: auto;
  mix-blend-mode: screen; /* Remove a caixa preta do JPG */
  transition: var(--transition);
}

.lp-logo-mobile {
  display: none !important;
  height: 48px;
  width: auto;
  mix-blend-mode: screen;
  transition: var(--transition);
}

.lp-logo-desktop:hover, .lp-logo-mobile:hover {
  opacity: 0.9;
  transform: scale(1.02);
}


.lp-header-cta {
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
}

/* ==========================================================================
   HERO (DARK PREMIUM THEME)
   ========================================================================== */
.lp-hero {
  background-color: var(--bg-deep);
  padding: 9rem 0 6rem;
  min-height: 95vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 769px) {
  .lp-hero {
    background-image: 
      linear-gradient(90deg, rgba(3, 7, 18, 0.98) 35%, rgba(3, 7, 18, 0.8) 70%, rgba(3, 7, 18, 0.4) 100%),
      url('imagens/hero-bg-office.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
  }
}

.lp-hero-media-mobile {
  display: none;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-deep) 0%, transparent 100%);
  pointer-events: none;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.lp-headline {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.lp-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 680px;
  font-weight: 300;
}

.lp-hero-bullets {
  list-style: none;
  margin-bottom: 2.75rem;
}

.lp-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
}

.bullet-svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  stroke: url(#mdg-grad);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 0.15rem;
}

.lp-hero-bullets span {
  line-height: 1.45;
}

.lp-cta-reassurance {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Novo Mockup de Alta Fidelidade */
.lp-hero-media {
  position: relative;
}

.lp-mockup-wrapper {
  position: relative;
  width: 100%;
}

.lp-mockup-screen-premium {
  border-radius: var(--radius-md);
  padding: 4px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(0, 106, 228, 0.15) 100%);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  filter: drop-shadow(var(--glow-shadow));
  transition: var(--transition);
}

.lp-mockup-screen-premium:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 40px 80px -20px rgba(197, 168, 128, 0.2);
}

.lp-hero-mockup-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-md) - 2px);
  object-fit: cover;
  display: block;
}

/* Card Flutuante */
.lp-floating-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: rgba(10, 15, 29, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: #ffffff;
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border: 1px solid var(--border-glass);
  border-left: 4px solid var(--accent);
  z-index: 10;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.lp-float-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 168, 128, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.lp-floating-card strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.lp-floating-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Benefícios Inline do Hero */
.lp-hero-benefits-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.lp-benefit-inline-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.lp-benefit-inline-item:hover {
  background: rgba(197, 168, 128, 0.08);
  border-color: rgba(197, 168, 128, 0.3);
  transform: translateY(-2px);
}

.benefit-inline-svg {
  width: 16px;
  height: 16px;
  color: var(--accent); /* Dourado */
  flex-shrink: 0;
}

/* ==========================================================================
   PORTFÓLIO VITRINE (PROJETOS RECENTES)
   ========================================================================== */
.lp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.lp-portfolio-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.lp-portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.35);
  box-shadow: 0 25px 50px -10px rgba(197, 168, 128, 0.15), 0 10px 20px rgba(0, 0, 0, 0.3);
}

.portfolio-visual {
  height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  transition: var(--transition);
}

/* Gradientes específicos para cada nicho usando as cores do logo MDG */
.mock-agro {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.15) 0%, rgba(3, 7, 18, 0.95) 100%);
  border-bottom: 2px solid var(--mdg-green);
}

.mock-previdenciario {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.15) 0%, rgba(3, 7, 18, 0.95) 100%);
  border-bottom: 2px solid var(--mdg-blue);
}

.mock-inventario {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.15) 0%, rgba(3, 7, 18, 0.95) 100%);
  border-bottom: 2px solid var(--mdg-orange);
}

.mock-empresarial {
  background: linear-gradient(135deg, rgba(203, 213, 225, 0.1) 0%, rgba(3, 7, 18, 0.95) 100%);
  border-bottom: 2px solid var(--mdg-silver);
}

.portfolio-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  z-index: 2;
}

.portfolio-screen-mock {
  width: 85%;
  height: 190px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.portfolio-screen-mock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Pontinhos do navegador mockado */
.portfolio-screen-mock::after {
  content: '•••';
  position: absolute;
  top: -1px;
  left: 10px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1.5px;
}

.lp-portfolio-card:hover .portfolio-screen-mock {
  transform: translateY(5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ==================== 3 CARDS ESCUROS ==================== */
.lp-grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .lp-grid-3-cols {
    grid-template-columns: 1fr;
  }
}

.lp-dark-card {
  background-color: #1A1A1A;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-dark-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border-color: rgba(255, 255, 255, 0.1);
}

.lp-dark-card-title {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.lp-dark-card-text {
  color: #A0A0A0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.portfolio-details {
  padding: 2rem;
  background-color: rgba(3, 7, 18, 0.25);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border-glass);
}

.portfolio-details h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.portfolio-details p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÕES CONFIGS (DARK THEME GERAL)
   ========================================================================== */
.lp-section {
  padding: 7rem 0;
  position: relative;
}

.lp-section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.lp-section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 4.5rem;
  font-weight: 300;
}

/* Alterando seções claras para tons de cinza/azul luxo escuros */
.lp-section-light {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.lp-section-dark {
  background-color: var(--bg-deep);
  color: #ffffff;
}

/* ==========================================================================
   DORES (GLASSMORPHISM)
   ========================================================================== */
.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
  text-align: left;
}

.lp-pain-item {
  background: var(--bg-glass);
  padding: 3.5rem 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  border-top: 3px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Customização dos Cards com as Cores Oficiais do Logo MDG */
.lp-pain-item.pain-orange {
  border-top-color: var(--mdg-orange);
}
.lp-pain-item.pain-orange .lp-pain-icon-wrapper {
  background-color: rgba(234, 88, 12, 0.08);
  border-color: rgba(234, 88, 12, 0.2);
}
.lp-pain-item.pain-orange .icon-svg {
  stroke: var(--mdg-orange);
}
.lp-pain-item.pain-orange:hover {
  border-color: rgba(234, 88, 12, 0.35);
  box-shadow: 0 15px 40px -10px rgba(234, 88, 12, 0.2);
  background: rgba(234, 88, 12, 0.02);
}

.lp-pain-item.pain-blue {
  border-top-color: var(--mdg-blue);
}
.lp-pain-item.pain-blue .lp-pain-icon-wrapper {
  background-color: rgba(29, 78, 216, 0.08);
  border-color: rgba(29, 78, 216, 0.2);
}
.lp-pain-item.pain-blue .icon-svg {
  stroke: var(--mdg-blue);
}
.lp-pain-item.pain-blue:hover {
  border-color: rgba(29, 78, 216, 0.35);
  box-shadow: 0 15px 40px -10px rgba(29, 78, 216, 0.2);
  background: rgba(29, 78, 216, 0.02);
}

.lp-pain-item.pain-green {
  border-top-color: var(--mdg-green);
}
.lp-pain-item.pain-green .lp-pain-icon-wrapper {
  background-color: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.2);
}
.lp-pain-item.pain-green .icon-svg {
  stroke: var(--mdg-green);
}
.lp-pain-item.pain-green:hover {
  border-color: rgba(22, 163, 74, 0.35);
  box-shadow: 0 15px 40px -10px rgba(22, 163, 74, 0.2);
  background: rgba(22, 163, 74, 0.02);
}

.lp-pain-item:hover {
  transform: translateY(-8px);
}

.lp-pain-icon-wrapper {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transition: var(--transition);
}

.icon-svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}

.lp-pain-item h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  letter-spacing: -0.3px;
  color: #ffffff;
}

.lp-pain-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

.lp-transition-text {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 300;
}

.lp-transition-text strong {
  color: var(--accent);
}

/* ==========================================================================
   BENEFÍCIOS (A SOLUÇÃO PREMIUM)
   ========================================================================== */
.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.lp-benefit-card {
  background: var(--bg-glass);
  padding: 3.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
}

.lp-benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: var(--glow-shadow);
}

.lp-benefit-icon {
  margin-bottom: 0.5rem;
}

.benefit-svg {
  width: 44px;
  height: 44px;
  stroke: url(#mdg-grad);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-benefit-card h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.lp-benefit-card p {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
}

/* ==========================================================================
   EXPERIÊNCIA / AUTORIDADE (BRAND DE LUXO)
   ========================================================================== */
.lp-section-brand {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.lp-brand-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5.5rem;
  align-items: center;
}

.lp-brand-tag {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.lp-brand-text h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.75rem;
  letter-spacing: -1px;
}

.lp-brand-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.lp-brand-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 2.5rem;
}

.lp-number-card strong {
  display: block;
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.lp-number-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Depoimento Real com Foto Otimizada */
.lp-brand-visual {
  position: relative;
}

.lp-office-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
}

.lp-office-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  bottom: 0;
  background: linear-gradient(to bottom, var(--accent) 0%, var(--mdg-blue) 100%);
}

.lp-testimonial-avatar-wrapper {
  margin-bottom: 1.5rem;
}

.lp-testimonial-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mdg-blue);
  box-shadow: 0 8px 20px rgba(0, 106, 228, 0.2);
}

.lp-stars {
  color: var(--mdg-orange);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.lp-office-info p {
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.lp-office-info cite {
  font-size: 0.9rem;
  color: var(--mdg-orange);
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  display: block;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   COMO FUNCIONA (LINHA DO TEMPO)
   ========================================================================== */
.lp-steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 4.5rem;
  position: relative;
}

.lp-steps-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, var(--border-glass) 100%);
  z-index: 1;
}

.lp-step-item {
  display: flex;
  gap: 2.5rem;
  position: relative;
  text-align: left;
}

.lp-step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: var(--bg-dark);
  border: 2px solid var(--accent);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.35rem;
  z-index: 2;
}

.lp-step-details h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.lp-step-details p {
  color: var(--text-muted);
  font-weight: 300;
}

/* ==========================================================================
   FORMULÁRIO DE CAPTURA (GLASSMORPHISM DE LUXO)
   ========================================================================== */
.lp-section-cta {
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at 50% 90%, rgba(0, 106, 228, 0.05) 0%, transparent 60%);
}

.lp-cta-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
  padding: 4.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 
    0 30px 60px -15px rgba(0, 0, 0, 0.8),
    0 0 50px -10px rgba(0, 106, 228, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.lp-cta-title {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -1px;
}

.lp-cta-desc {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3.5rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.lp-form {
  display: grid;
  gap: 1.75rem;
}

.lp-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}

.lp-form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.lp-form-group input,
.lp-form-group select {
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  font-family: var(--font-body);
  font-size: 1rem;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.01);
  transition: var(--transition);
}

/* Opções do select no dark */
.lp-form-group select option {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.lp-form-group input:focus,
.lp-form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.1);
}

.lp-form-consent {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  text-align: left;
  margin: 0.5rem 0;
}

.lp-form-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent);
}

.lp-form-consent label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.lp-form-consent label a {
  text-decoration: underline;
  color: var(--accent);
}

.lp-form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* Feedback do Form */
.lp-form-feedback {
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  display: none;
}

.lp-form-feedback.success {
  background-color: rgba(37, 211, 102, 0.08);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.18);
  display: block;
}

.lp-form-feedback.error {
  background-color: rgba(255, 59, 48, 0.08);
  color: #ff453a;
  border: 1px solid rgba(255, 59, 48, 0.18);
  display: block;
}

/* ==========================================================================
   FAQ ACORDEÃO (LUXO)
   ========================================================================== */
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.lp-faq-item {
  background: var(--bg-glass);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: var(--transition);
}

.lp-faq-question {
  width: 100%;
  padding: 1.75rem 2.5rem;
  background: none;
  border: none;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
  text-align: left;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  letter-spacing: -0.2px;
}

.lp-faq-question:hover {
  background-color: rgba(255, 255, 255, 0.01);
  color: var(--accent);
}

.lp-faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
}

.lp-faq-icon svg {
  width: 18px;
  height: 18px;
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 2.5rem;
}

.lp-faq-answer p {
  padding-bottom: 1.75rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Estados ativos do FAQ */
.lp-faq-item.active {
  border-color: rgba(197, 168, 128, 0.3);
  background-color: rgba(255, 255, 255, 0.01);
}

.lp-faq-item.active .lp-faq-answer {
  max-height: 500px;
}

.lp-faq-item.active .lp-faq-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   RODAPÉ LUXO
   ========================================================================== */
.lp-footer {
  background-color: var(--bg-darker);
  color: var(--text-muted);
  padding: 6rem 0 4rem;
  border-top: 1px solid var(--border-glass);
}

.lp-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.lp-footer-logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: 2px;
}

.lp-footer-logo-text strong {
  color: var(--accent);
  font-weight: 800;
}

.lp-footer-copyright {
  font-size: 0.9rem;
  font-weight: 300;
}

.lp-footer-legal {
  font-size: 0.8rem;
  line-height: 1.8;
  max-width: 650px;
  font-weight: 300;
}

.lp-footer-link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
}

.lp-footer-link:hover {
  color: #ffffff;
}

.lp-footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  max-width: 850px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.75rem;
  line-height: 1.6;
}

/* ==========================================================================
   TABELA COMPARATIVA (DIDÁTICA)
   ========================================================================== */
.lp-comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.lp-comparison-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.lp-comparison-card.comp-site {
  background: rgba(244, 63, 94, 0.005);
  border: 1px solid rgba(244, 63, 94, 0.08);
}

.lp-comparison-card.comp-highlight {
  border: 2px solid var(--accent);
  box-shadow: 0 15px 35px -5px rgba(197, 168, 128, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.lp-comparison-card.comp-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -5px rgba(197, 168, 128, 0.3);
  border-color: var(--accent-light);
}

.lp-comp-header {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comp-site {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
}

.comp-lp {
  background: linear-gradient(135deg, #c24100 0%, var(--mdg-orange) 100%);
  color: #ffffff;
}

.lp-comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.lp-comp-list li {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  display: flex;
  align-items: flex-start;
}

.item-negative {
  color: #a3b3cc;
}

.item-positive {
  color: #ffffff;
}

/* Otimização de Ícones Locais */
.lp-pain-icon, .lp-solution-icon {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.lp-benefit-icon {
  margin-bottom: 0.5rem;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background-color: rgba(197, 168, 128, 0.06);
  border: 1px solid rgba(197, 168, 128, 0.15);
  padding: 0.75rem;
}

.lp-benefit-card {
  border-top: 3px solid var(--accent) !important;
}

.lp-benefit-card:hover {
  border-top-color: var(--accent-light) !important;
}

/* Destaque nos Subtítulos de Seção para Contraste */
.lp-section-subtitle {
  color: #a3b3cc !important;
}

/* Destaques das Estatísticas com Cores do Logo */
.lp-number-card:nth-child(1) strong {
  color: var(--mdg-blue) !important;
  text-shadow: 0 0 15px rgba(29, 78, 216, 0.2);
}
.lp-number-card:nth-child(2) strong {
  color: var(--mdg-green) !important;
  text-shadow: 0 0 15px rgba(22, 163, 74, 0.2);
}
.lp-number-card:nth-child(3) strong {
  color: var(--mdg-orange) !important;
  text-shadow: 0 0 15px rgba(234, 88, 12, 0.2);
}

/* Timeline Colorida Baseada no Logo MDG */
.lp-step-item:nth-child(1) .lp-step-number {
  border-color: var(--mdg-orange) !important;
  box-shadow: 0 0 20px rgba(234, 88, 12, 0.25) !important;
  color: var(--mdg-orange) !important;
  background-color: var(--bg-dark) !important;
  z-index: 2;
}
.lp-step-item:nth-child(2) .lp-step-number {
  border-color: var(--mdg-blue) !important;
  box-shadow: 0 0 20px rgba(0, 106, 228, 0.25) !important;
  color: var(--mdg-blue) !important;
  background-color: var(--bg-dark) !important;
  z-index: 2;
}
.lp-step-item:nth-child(3) .lp-step-number {
  border-color: var(--mdg-green) !important;
  box-shadow: 0 0 20px rgba(0, 203, 102, 0.25) !important;
  color: var(--mdg-green) !important;
  background-color: var(--bg-dark) !important;
  z-index: 2;
}

/* ==========================================================================
   RESPONSIVIDADE E DISPOSITIVOS MÓVEIS
   ========================================================================== */
@media (max-width: 1024px) {
  .lp-comparison-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 4.5rem;
    text-align: center;
  }
  
  .lp-hero-benefits-inline {
    justify-content: center;
  }
  
  .lp-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .lp-hero-media {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
  
  .lp-cta-reassurance {
    justify-content: center;
  }
  
  .lp-brand-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
  
  .lp-brand-visual {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .lp-hero {
    padding: 7rem 0 3rem !important;
    min-height: auto;
  }

  .lp-hero-inner {
    gap: 2rem;
  }

  .lp-hero-media-mobile {
    display: block;
    margin: 2.25rem auto 3rem auto;
    width: 100%;
    max-width: 500px;
  }

  .lp-hero-media {
    display: none;
  }

  .lp-badge {
    margin-bottom: 1.25rem;
  }

  .lp-headline {
    margin-bottom: 1.25rem;
    font-size: clamp(1.8rem, 5vw, 2.3rem);
  }

  .lp-subheadline {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .lp-hero-benefits-inline {
    margin-bottom: 1.75rem;
  }

  .lp-logo-desktop {
    display: none !important;
  }

  .lp-logo-mobile {
    display: block !important;
    height: 48px !important;
    width: auto !important;
  }

  .lp-header-inner {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .lp-header-cta {
    display: none !important;
  }

  .lp-logo {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .lp-section {
    padding: 5.5rem 0;
  }
  
  .lp-hero-benefits-inline {
    gap: 0.75rem;
  }
  
  .lp-benefit-inline-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }
  
  .portfolio-visual {
    height: auto;
    padding-top: 2.5rem;
  }
  
  .portfolio-screen-mock {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  
  .lp-pain-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  
  .lp-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  
  .lp-benefit-card {
    padding: 2.5rem;
  }
  
  .lp-brand-numbers {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: center;
  }
  
  .lp-cta-card {
    padding: 2.5rem 1.5rem;
  }
  
  .lp-faq-question {
    padding: 1.5rem 1.75rem;
    font-size: 1.1rem;
  }
  
  .lp-faq-answer {
    padding: 0 1.75rem;
  }
}


/* Layout centralizado de 1280px para o conteúdo mantendo os fundos 100% full-width */

.portfolio-mock-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: var(--transition);
}

.lp-portfolio-card:hover .portfolio-mock-img {
  transform: scale(1.03);
}

/* ==========================================================================
   NOVA SEÇÃO DE DEPOIMENTOS E ESTATÍSTICAS
   ========================================================================== */
.lp-brand-numbers-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.lp-number-card-v {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.lp-number-card-v strong {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}

.lp-number-card-v:nth-child(1) strong { color: var(--mdg-blue); }
.lp-number-card-v:nth-child(2) strong { color: var(--mdg-green); }
.lp-number-card-v:nth-child(3) strong { color: var(--mdg-orange); }

.lp-number-card-v span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.lp-testimonials-section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lp-testimonials-subtitle {
  color: var(--mdg-orange);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.lp-testimonials-main-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 1.25rem;
}

.lp-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-glass);
}

.lp-testimonial-author cite {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
  font-style: normal;
  display: block;
}

.lp-testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

@media (max-width: 1024px) {
  .lp-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ==========================================================================
   COOKIES BANNER & PÁGINA DE PRIVACIDADE (LGPD)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(6, 11, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-content a {
  color: var(--mdg-orange);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--mdg-blue) 0%, var(--mdg-green) 100%);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 203, 102, 0.3);
}

.btn-cookie-learn {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-cookie-learn:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    bottom: 12px;
    left: 12px;
    right: 12px;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
    flex-direction: column-reverse;
  }
  
  .btn-cookie-accept {
    width: 100%;
  }
}

/* Estilos da Página de Privacidade */
.privacy-page {
  padding: 120px 0 80px;
  background-color: var(--bg-deep);
}

.privacy-page h1 {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 1rem;
}

.privacy-page section {
  margin-bottom: 3rem;
}

.privacy-page h2 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-page h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.25rem 0 0.75rem;
}

.privacy-page p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-page p strong {
  color: #ffffff;
}

.privacy-page ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.privacy-page ul li {
  color: var(--text-muted);
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

.privacy-page ul li::before {
  content: "•";
  color: var(--mdg-orange);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.privacy-table-container {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.privacy-table th, .privacy-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-glass);
}

.privacy-table th {
  background-color: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 600;
}

.privacy-table td {
  color: var(--text-muted);
}

.privacy-table tr:last-child td {
  border-bottom: none;
}

.privacy-page a {
  color: var(--mdg-orange);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.privacy-page a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Utilitários Extras */
.lp-text-gradient-green {
  background: linear-gradient(135deg, var(--mdg-green) 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.lp-text-gradient-orange {
  background: linear-gradient(135deg, #c24100 0%, var(--mdg-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* ==================== 1 COLUNA & CARDS MDG ==================== */
.lp-grid-1-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.card-orange {
  border: 2px solid var(--mdg-orange);
  border-left-width: 4px;
  background: linear-gradient(90deg, rgba(234, 88, 12, 0.05) 0%, rgba(26, 26, 26, 0) 100%);
}
.card-orange:hover {
  border-color: var(--mdg-orange) !important;
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.18) !important;
}

.card-blue {
  border: 2px solid var(--mdg-blue);
  border-left-width: 4px;
  background: linear-gradient(90deg, rgba(0, 106, 228, 0.05) 0%, rgba(26, 26, 26, 0) 100%);
}
.card-blue:hover {
  border-color: var(--mdg-blue) !important;
  box-shadow: 0 10px 30px rgba(0, 106, 228, 0.18) !important;
}

.card-green {
  border: 2px solid var(--mdg-green);
  border-left-width: 4px;
  background: linear-gradient(90deg, rgba(0, 203, 102, 0.05) 0%, rgba(26, 26, 26, 0) 100%);
}
.card-green:hover {
  border-color: var(--mdg-green) !important;
  box-shadow: 0 10px 30px rgba(0, 203, 102, 0.18) !important;
}

/* ==================== WHATSAPP CAROUSEL ==================== */
.lp-testimonials-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  cursor: grab;
  user-select: none; /* Evita que o texto seja selecionado ao arrastar */
}

.lp-testimonials-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.lp-wa-print-card {
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #efeae2;
  height: 480px;
}

.lp-wa-print-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .lp-wa-print-card {
    width: 285px;
    height: 460px;
  }
}

/* Simulação de Chat do WhatsApp */
.wa-chat-window {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: left;
}

.wa-chat-header {
  background-color: #f0f2f5;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.95rem;
  margin-right: 10px;
  flex-shrink: 0;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.15);
}

.wa-avatar-1 { background-color: #f08a5d; }
.wa-avatar-2 { background-color: #3f72af; }
.wa-avatar-3 { background-color: #ff2e63; }
.wa-avatar-4 { background-color: #00adb5; }
.wa-avatar-5 { background-color: #9b5de5; }

.wa-contact-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.wa-contact-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111b21;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-contact-status {
  font-size: 0.7rem;
  color: #00a884;
  margin-top: 1px;
  font-weight: 500;
}

.wa-header-icons {
  display: flex;
  gap: 3px;
  padding-left: 8px;
}

.wa-icon-dot {
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background-color: #667781;
}

.wa-chat-body {
  flex-grow: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #efeae2;
  background-image: radial-gradient(rgba(0,0,0,0.035) 1px, transparent 0);
  background-size: 14px 14px;
  overflow-y: auto;
}

.wa-msg {
  display: flex;
  width: 100%;
}

.wa-msg-received {
  justify-content: flex-start;
}

.wa-msg-sent {
  justify-content: flex-end;
}

.wa-msg-bubble {
  max-width: 85%;
  padding: 6px 8px 14px 8px;
  border-radius: 7px;
  position: relative;
  font-size: 0.8rem;
  line-height: 1.35;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

.wa-msg-received .wa-msg-bubble {
  background-color: #ffffff;
  color: #111b21;
  border-top-left-radius: 0;
}

/* Seta do balão recebido */
.wa-msg-received .wa-msg-bubble::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 6px solid #ffffff;
}

.wa-msg-sent .wa-msg-bubble {
  background-color: #d9fdd3;
  color: #111b21;
  border-top-right-radius: 0;
}

/* Seta do balão enviado */
.wa-msg-sent .wa-msg-bubble::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 6px solid #d9fdd3;
}

.wa-msg-bubble p {
  margin: 0;
  word-break: break-word;
}

.wa-time {
  position: absolute;
  bottom: 2px;
  right: 5px;
  font-size: 0.62rem;
  color: #667781;
}

.wa-time-status {
  position: absolute;
  bottom: 2px;
  right: 5px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.wa-ticks {
  font-size: 0.65rem;
  color: #53bdeb;
  font-weight: bold;
  line-height: 1;
}

.wa-chat-footer {
  background-color: #f0f2f5;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.wa-footer-emoji {
  color: #667781;
  font-size: 1.1rem;
  cursor: default;
}

.wa-footer-input {
  background-color: #ffffff;
  color: #a0a0a0;
  flex-grow: 1;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: default;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-footer-mic {
  color: #667781;
  font-size: 1rem;
  cursor: default;
}

/* ==========================================================================
   AJUSTES EXTRAS PARA SMARTPHONES ULTRA ESTREITOS
   ========================================================================== */
@media (max-width: 480px) {
  .lp-header-cta {
    display: none !important;
  }
  
  .lp-header-inner {
    justify-content: center;
  }
  
  /* Melhora o posicionamento do card flutuante no mockup mobile */
  .lp-floating-card {
    left: 10px;
    right: 10px;
    bottom: -15px;
    padding: 0.8rem 1.2rem;
    gap: 0.8rem;
  }
  
  .lp-floating-card strong {
    font-size: 1rem;
  }
}
