.elementor-kit-4{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-b5aeb33:#E6F7FB;--e-global-color-c58817e:#1A2A36;--e-global-color-5420d44:#2978B5;--e-global-color-58be983:#ffffff;--e-global-color-09cc561:#0d141a;--e-global-color-a495fd4:#B8C0CC;--e-global-color-dff8941:#E6F7FB;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-4 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ===================================
   WEBLEADS - CSS GLOBAL
   Design System v2.0 - Cores Atualizadas
=================================== */

:root {
  /* Cores principais Webleads */
  --dourado-primary: #FFD700;
  --dourado-escuro: #B8860B;
  --dourado-claro: #FFF3B0;
  --fundo-dark: #1A1A1A;
  --fundo-dark-medium: #2A2A2A;
  --fundo-dark-light: #3A3A3A;
  
  /* Cores de suporte */
  --cinza-dark: #111827;
  --cinza-medium: #6B7280;
  --cinza-light: #E5E7EB;
  --branco: #FFFFFF;
  
  /* Verde para métricas/ROI */
  --verde-roi: #16A34A;
  --verde-claro: #D1FAE5;
  
  /* Tipografia */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Espaçamentos */
  --spacing-section-desktop: 80px;
  --spacing-section-mobile: 40px;
  --border-radius: 8px;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
  --shadow-glow-gold-hover: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* Reset e Base */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--cinza-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container responsivo */
.container-webleads {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   BOTÕES E CTAs
=================================== */

.btn-primary {
  background: var(--dourado-primary);
  color: var(--fundo-dark);
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 243, 176, 0.4), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--dourado-escuro);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold-hover);
  color: var(--branco);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--dourado-primary);
  border: 2px solid var(--dourado-primary);
  padding: 14px 30px;
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--dourado-primary);
  color: var(--fundo-dark);
  box-shadow: var(--shadow-glow-gold);
}

/* Botão outline claro (para fundos escuros) */
.btn-outline-light {
  background: transparent;
  color: var(--branco);
  border: 2px solid var(--branco);
  padding: 14px 30px;
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: var(--branco);
  color: var(--fundo-dark);
}

/* ===================================
   SEÇÕES E ESPAÇAMENTOS
=================================== */

.section-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--fundo-dark) 0%, var(--fundo-dark-light) 100%);
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-services,
.section-cases,
.section-about {
  padding: var(--spacing-section-desktop) 0;
}

.section-dark {
  background: var(--fundo-dark);
  color: var(--branco);
}

.section-dark-medium {
  background: var(--fundo-dark-medium);
  color: var(--branco);
}

.section-light {
  background: #F9FAFB;
}

/* ===================================
   TIPOGRAFIA
=================================== */

.heading-xl {
  font-size: 56px;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.heading-md {
  font-size: 36px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
}

.heading-sm {
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
}

.subheading {
  font-size: 20px;
  font-weight: var(--font-weight-normal);
  opacity: 0.9;
  line-height: 1.6;
}

.text-highlight {
  color: var(--verde-roi);
  font-weight: var(--font-weight-semibold);
}

.text-gold {
  color: var(--dourado-primary);
  font-weight: var(--font-weight-semibold);
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--dourado-primary) 0%, var(--dourado-claro) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================
   CARDS E COMPONENTES
=================================== */

.card-service,
.card-case {
  background: var(--branco);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--cinza-light);
  position: relative;
  overflow: hidden;
}

.card-service::before,
.card-case::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--dourado-primary) 0%, var(--dourado-claro) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card-service:hover::before,
.card-case:hover::before {
  transform: scaleX(1);
}

.card-service:hover,
.card-case:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--dourado-primary);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--dourado-primary) 0%, var(--dourado-escuro) 100%);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-glow-gold);
}

.card-icon svg,
.card-icon i {
  color: var(--fundo-dark);
  font-size: 24px;
}

/* Cards em fundo escuro */
.card-dark {
  background: var(--fundo-dark-medium);
  border-color: var(--fundo-dark-light);
  color: var(--branco);
}

.card-dark:hover {
  background: var(--fundo-dark-light);
  border-color: var(--dourado-primary);
}

/* Métricas e resultados */
.metric-card {
  text-align: center;
  padding: 24px;
}

.metric-number {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  color: var(--verde-roi);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-number.gold {
  color: var(--dourado-primary);
}

.metric-label {
  font-size: 14px;
  color: var(--cinza-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================
   DEPOIMENTOS
=================================== */

.testimonial-card {
  background: var(--branco);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 80px;
  color: var(--dourado-primary);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dourado-primary);
}

.testimonial-name {
  font-weight: var(--font-weight-semibold);
  margin: 0;
  color: var(--cinza-dark);
}

.testimonial-role {
  font-size: 14px;
  color: var(--cinza-medium);
  margin: 0;
}

/* ===================================
   FORMULÁRIOS
=================================== */

.form-webleads input[type="text"],
.form-webleads input[type="email"],
.form-webleads input[type="tel"],
.form-webleads select,
.form-webleads textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--cinza-light);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--branco);
}

.form-webleads input:focus,
.form-webleads textarea:focus,
.form-webleads select:focus {
  outline: none;
  border-color: var(--dourado-primary);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-webleads label {
  display: block;
  margin-bottom: 8px;
  font-weight: var(--font-weight-medium);
  color: var(--cinza-dark);
}

/* Formulário em fundo escuro */
.form-webleads.form-dark input,
.form-webleads.form-dark textarea,
.form-webleads.form-dark select {
  background: var(--fundo-dark-medium);
  border-color: var(--fundo-dark-light);
  color: var(--branco);
}

.form-webleads.form-dark label {
  color: var(--branco);
}

/* ===================================
   BADGES E TAGS
=================================== */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  gap: 6px;
}

.badge-success {
  background: var(--verde-claro);
  color: #065F46;
}

.badge-gold {
  background: rgba(255, 215, 0, 0.15);
  color: var(--dourado-escuro);
  border: 1px solid var(--dourado-primary);
}

.badge-dark {
  background: var(--fundo-dark-medium);
  color: var(--dourado-primary);
}

/* ===================================
   EFEITOS ESPECIAIS
=================================== */

/* Glow dourado */
.glow-gold {
  box-shadow: var(--shadow-glow-gold);
}

.glow-gold:hover {
  box-shadow: var(--shadow-glow-gold-hover);
}

/* Linha decorativa dourada */
.divider-gold {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--dourado-primary) 0%, var(--dourado-claro) 100%);
  border-radius: 2px;
  margin: 20px 0;
}

.divider-gold.center {
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   RESPONSIVO
=================================== */

@media (max-width: 768px) {
  .heading-xl {
    font-size: 36px;
  }
  
  .heading-lg {
    font-size: 32px;
  }
  
  .heading-md {
    font-size: 28px;
  }
  
  .heading-sm {
    font-size: 22px;
  }
  
  .subheading {
    font-size: 18px;
  }
  
  .section-hero {
    padding: 80px 0 60px;
  }
  
  .section-hero::before {
    width: 400px;
    height: 400px;
    right: -30%;
  }
  
  .section-services,
  .section-cases,
  .section-about {
    padding: var(--spacing-section-mobile) 0;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-outline-light {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  
  .card-service,
  .card-case {
    padding: 24px;
  }
  
  .metric-number {
    font-size: 40px;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
  }
  
  .card-icon svg,
  .card-icon i {
    font-size: 20px;
  }
}

/* ===================================
   ANIMAÇÕES E MICROINTERAÇÕES
=================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 243, 176, 0.3), transparent);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Links */
a {
  color: var(--dourado-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dourado-escuro);
}

/* Seleção de texto */
::selection {
  background: var(--dourado-primary);
  color: var(--fundo-dark);
}

::-moz-selection {
  background: var(--dourado-primary);
  color: var(--fundo-dark);
}

/* Scrollbar customizada */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--fundo-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--dourado-escuro);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dourado-primary);
}/* End custom CSS */