.elementor-2872 .elementor-element.elementor-element-b010694{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//*
  ============================================
  LP LUMARA DALVA — DESIGN SYSTEM GLOBAL
  ============================================
  Como usar no Elementor:
  1. Vá em Elementor > Configurações da Página > CSS Personalizado
  2. Cole TODO o conteúdo deste arquivo
  3. Isso fará com que TODAS as seções compartilhem
     cores, fontes, botões e responsividade
  ============================================
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Backgrounds */
  --ld-bg-dark: #050508;
  --ld-bg-dark-alt: #0a0a0f;
  --ld-bg-light: #f5f5f5;
  --ld-bg-card: rgba(255, 255, 255, 0.03);
  --ld-bg-card-hover: rgba(255, 255, 255, 0.05);

  /* Accent */
  --ld-accent: #ff5a3a;
  --ld-accent-hover: #ff7a55;
  --ld-accent-glow: rgba(255, 60, 40, 0.3);
  --ld-green: #2ecc40;
  --ld-green-glow: rgba(46, 204, 64, 0.15);

  /* Text — dark backgrounds */
  --ld-text: #ffffff;
  --ld-text-secondary: rgba(255, 255, 255, 0.55);
  --ld-text-muted: rgba(255, 255, 255, 0.35);

  /* Text — light backgrounds */
  --ld-text-dark: #1a1a1a;
  --ld-text-dark-secondary: #555555;
  --ld-text-dark-muted: #888888;

  /* Borders */
  --ld-border: rgba(255, 255, 255, 0.06);
  --ld-border-accent: rgba(255, 90, 58, 0.2);

  /* Spacing */
  --ld-section-py: 100px;
  --ld-section-px: 20px;
  --ld-container-max: 1100px;

  /* Shadows */
  --ld-shadow-cta: 0 4px 24px rgba(255, 60, 40, 0.3), 0 1px 3px rgba(255, 60, 40, 0.2);
  --ld-shadow-cta-hover: 0 8px 36px rgba(255, 60, 40, 0.45), 0 2px 8px rgba(255, 60, 40, 0.3);

  /* Transitions */
  --ld-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ld-duration: 0.4s;
}

/* ========================================
   GLOBAL RESET (scoped to .ld- classes)
   ======================================== */
[class^="ld-"] *,
[class^="ld-"] *::before,
[class^="ld-"] *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================================
   CTA BUTTON (shared across all sections)
   ======================================== */
.ld-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 42px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--ld-accent), #ff3c3c, #e62e2e);
  background-size: 200% auto;
  box-shadow: var(--ld-shadow-cta);
  transition: all var(--ld-duration) var(--ld-ease);
  overflow: hidden;
  z-index: 1;
  line-height: 1;
}
.ld-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ld-accent-hover), var(--ld-accent), #ff3c3c);
  opacity: 0;
  transition: opacity var(--ld-duration) ease;
  z-index: -1;
}
.ld-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--ld-shadow-cta-hover);
  color: #fff;
  text-decoration: none;
}
.ld-cta:hover::before {
  opacity: 1;
}
.ld-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.ld-cta:hover svg {
  transform: translateX(4px);
}

/* CTA Arrow SVG inline */
.ld-cta-arrow::after {
  content: ' →';
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* CTA Glow effect */
.ld-cta-glow {
  width: 200px;
  height: 40px;
  margin: -10px auto 0;
  background: radial-gradient(ellipse, var(--ld-accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* ========================================
   SHARED ANIMATIONS
   ======================================== */
@keyframes ld-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ld-fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ld-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ld-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
@keyframes ld-gradientShift {
  0%   { background-position: 0% center; }
  50%  { background-position: 200% center; }
  100% { background-position: 0% center; }
}
@keyframes ld-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ========================================
   BADGES (shared style)
   ======================================== */
.ld-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: ld-fadeDown 0.8s ease-out;
}
.ld-badge--accent {
  border: 1px solid var(--ld-border-accent);
  background: rgba(255, 60, 40, 0.06);
  color: rgba(255, 100, 80, 0.9);
}
.ld-badge--green {
  border: 1px solid rgba(46, 204, 64, 0.3);
  background: var(--ld-green-glow);
  color: var(--ld-green);
}
.ld-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: ld-pulse 2s ease-in-out infinite;
}
.ld-badge--accent .ld-badge-dot {
  background: var(--ld-accent);
}
.ld-badge--green .ld-badge-dot {
  background: var(--ld-green);
}

/* ========================================
   RESPONSIVE — GLOBAL
   ======================================== */
@media (max-width: 1024px) {
  :root {
    --ld-section-py: 80px;
    --ld-section-px: 24px;
  }
}
@media (max-width: 768px) {
  :root {
    --ld-section-py: 60px;
    --ld-section-px: 16px;
  }
  .ld-cta {
    padding: 16px 28px !important;
    font-size: 13px !important;
    max-width: 400px !important;
    width: 100% !important;
    justify-content: center !important;
    border-radius: 12px !important;
  }
  .ld-cta svg {
    width: 16px !important;
    height: 16px !important;
  }
  .ld-cta-glow {
    width: 150px !important;
  }
}
@media (max-width: 480px) {
  :root {
    --ld-section-py: 48px;
    --ld-section-px: 14px;
  }
  .ld-cta {
    padding: 15px 20px !important;
    font-size: 12px !important;
    gap: 8px !important;
  }
}
@media (max-width: 380px) {
  :root {
    --ld-section-py: 40px;
    --ld-section-px: 12px;
  }
  .ld-cta {
    font-size: 11.5px !important;
    padding: 14px 16px !important;
  }
  .ld-badge {
    padding: 6px 14px !important;
    font-size: 11px !important;
  }
}/* End custom CSS */