/* ============================================================
   MKT4+ Comunicações — CSS Global
   Site: mkt4.com.br | WordPress + Elementor Pro
   Design System: Kinetic Enterprise (adaptado às cores reais da marca)
   
   CORES OFICIAIS DA MARCA:
   Azul MKT4:     #0077BE  (azul institucional)
   Laranja MKT4:  #F07823  (laranja institucional)
   Texto escuro:  #1a1a1a
   Cinza texto:   #666666  ("comunicações")
   Branco:        #ffffff
   ============================================================ */

/* === VARIÁVEIS CSS === */
:root {
  --mkt4-blue:        #0077BE;
  --mkt4-blue-dark:   #005a9e;
  --mkt4-blue-light:  #e8f3fb;
  --mkt4-orange:      #F07823;
  --mkt4-orange-dark: #d4621a;
  --mkt4-orange-light:#fff3e8;
  --mkt4-black:       #1a1a1a;
  --mkt4-gray:        #666666;
  --mkt4-gray-light:  #f5f6f8;
  --mkt4-gray-mid:    #e0e3e8;
  --mkt4-white:       #ffffff;
  
  /* Superfícies */
  --surface:          #f7f9fb;
  --surface-low:      #f2f4f6;
  --surface-container:#eceef0;
  --outline:          #c5c6cd;
  
  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,119,190,0.08);
  --shadow-md:   0 8px 32px rgba(0,119,190,0.10);
  --shadow-lg:   0 16px 48px rgba(0,119,190,0.12);
  --shadow-orange: 0 8px 24px rgba(240,120,35,0.25);
}

/* === RESET E BASE === */
html { scroll-behavior: smooth; }

::selection {
  background: rgba(0, 119, 190, 0.2);
  color: #1a1a1a;
}

/* === TIPOGRAFIA === */
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #f7f9fb;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Hanken Grotesk', sans-serif;
  color: #1a1a1a;
}

/* === BOTÕES === */

/* Botão Primário — Azul MKT4 */
.btn-mkt4-primary,
.elementor-button.btn-primary {
  background: var(--mkt4-blue) !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 9999px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-mkt4-primary:hover {
  background: var(--mkt4-blue-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Botão Secundário — Laranja MKT4 */
.btn-mkt4-accent,
.elementor-button.btn-accent {
  background: var(--mkt4-orange) !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 9999px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.btn-mkt4-accent:hover {
  background: var(--mkt4-orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

/* Botão Outline — Azul */
.btn-mkt4-outline {
  background: transparent !important;
  color: var(--mkt4-blue) !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 9999px;
  border: 2px solid var(--mkt4-blue) !important;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-mkt4-outline:hover {
  background: var(--mkt4-blue) !important;
  color: #ffffff !important;
}

/* === CARDS === */
.mkt4-card {
  background: #ffffff;
  border: 1px solid var(--mkt4-gray-mid);
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.mkt4-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Card com destaque laranja */
.mkt4-card-accent {
  border-top: 3px solid var(--mkt4-orange);
}

/* Card com destaque azul */
.mkt4-card-primary {
  border-top: 3px solid var(--mkt4-blue);
}

/* Card dark (fundo azul escuro) */
.mkt4-card-dark {
  background: #0d2240;
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
}

/* === GLASSMORPHISM === */
.bg-glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-sm);
}

.bg-dark-glass {
  background: rgba(10, 30, 60, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* === BADGE / CHIP === */
.badge-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mkt4-blue-light);
  color: var(--mkt4-blue-dark);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(0,119,190,0.25);
}

.badge-orange {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mkt4-orange-light);
  color: var(--mkt4-orange-dark);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(240,120,35,0.25);
}

/* === PULSE DOT (indicador animado) === */
.pulse-dot-blue {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--mkt4-blue);
  border-radius: 50%;
  animation: pulse-blue 2s infinite;
}

.pulse-dot-orange {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--mkt4-orange);
  border-radius: 50%;
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-blue {
  0%   { box-shadow: 0 0 0 0 rgba(0, 119, 190, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(0, 119, 190, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 119, 190, 0); }
}

@keyframes pulse-orange {
  0%   { box-shadow: 0 0 0 0 rgba(240, 120, 35, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(240, 120, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 120, 35, 0); }
}

/* === HIGHLIGHT DE TEXTO === */
.text-highlight-blue {
  position: relative;
  display: inline-block;
}
.text-highlight-blue::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(0, 119, 190, 0.18);
  z-index: -1;
  transform: rotate(-0.8deg);
  border-radius: 2px;
}

.text-highlight-orange {
  position: relative;
  display: inline-block;
}
.text-highlight-orange::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(240, 120, 35, 0.22);
  z-index: -1;
  transform: rotate(-0.8deg);
  border-radius: 2px;
}

/* === DIVISOR DECORATIVO === */
.section-divider-blue {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--mkt4-blue), transparent);
  border-radius: 2px;
  margin-bottom: 16px;
}

.section-divider-orange {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--mkt4-orange), transparent);
  border-radius: 2px;
  margin-bottom: 16px;
}

/* === STATS / MÉTRICAS === */
.stat-number-blue {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--mkt4-blue);
  line-height: 1;
}

.stat-number-orange {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--mkt4-orange);
  line-height: 1;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* === SEÇÕES === */
.section-light {
  background: #f7f9fb;
}

.section-white {
  background: #ffffff;
}

.section-dark {
  background: #0d1e36;
  color: #ffffff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(255,255,255,0.75);
}

/* Gradiente hero (azul profundo da marca) */
.hero-gradient {
  background: linear-gradient(135deg, #0d1e36 0%, #0a3060 50%, #0d2850 100%);
}

/* Blob decorativo azul */
.blob-blue {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 119, 190, 0.08);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Blob decorativo laranja */
.blob-orange {
  position: absolute;
  border-radius: 50%;
  background: rgba(240, 120, 35, 0.07);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* === AMBIENT SHADOW === */
.ambient-shadow {
  box-shadow: 0 8px 32px rgba(10, 30, 60, 0.07);
}

/* === HEADER STICKY === */
.site-header,
#masthead,
.elementor-location-header {
  background: rgba(247, 249, 251, 0.88) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(197, 198, 205, 0.22) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) !important;
}

/* === LOGO NO HEADER === */
.site-logo img,
.custom-logo,
.elementor-image a img {
  max-height: 44px !important;
  width: auto !important;
}

/* === MENU DE NAVEGAÇÃO === */
.elementor-nav-menu .elementor-item {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #44474d !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  transition: color 0.2s, background 0.2s !important;
}

.elementor-nav-menu .elementor-item:hover {
  color: var(--mkt4-blue) !important;
  background: var(--mkt4-blue-light) !important;
}

.elementor-nav-menu .elementor-item.elementor-item-active {
  color: var(--mkt4-blue) !important;
  border-bottom: 2px solid var(--mkt4-orange) !important;
}

/* Dropdown */
.elementor-nav-menu--dropdown .elementor-item {
  color: #1a1a1a !important;
  font-size: 13px !important;
  padding: 10px 16px !important;
}

.elementor-nav-menu--dropdown .elementor-item:hover {
  background: var(--mkt4-blue-light) !important;
  color: var(--mkt4-blue) !important;
}

/* === INPUTS / FORMULÁRIOS === */
.elementor-field-type-text input,
.elementor-field-type-email input,
.elementor-field-type-tel input,
.elementor-field-type-textarea textarea,
.elementor-field-type-select select {
  border: 1px solid var(--outline) !important;
  border-radius: 4px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  padding: 12px 16px !important;
  background: #ffffff !important;
  color: #1a1a1a !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

.elementor-field-type-text input:focus,
.elementor-field-type-email input:focus,
.elementor-field-type-tel input:focus,
.elementor-field-type-textarea textarea:focus,
.elementor-field-type-select select:focus {
  border-color: var(--mkt4-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.12) !important;
  outline: none !important;
}

/* === ACCORDION (FAQ) === */
.elementor-accordion .elementor-accordion-title {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
}

.elementor-accordion .elementor-active .elementor-accordion-title {
  color: var(--mkt4-blue) !important;
}

/* === ÍCONES DE SERVIÇO === */
.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon-blue { background: var(--mkt4-blue-light); color: var(--mkt4-blue); }
.service-icon-orange { background: var(--mkt4-orange-light); color: var(--mkt4-orange); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .stat-number-blue,
  .stat-number-orange {
    font-size: 36px;
  }
  
  .mkt4-card {
    padding: 20px;
  }
}

/* === FOOTER === */
.elementor-location-footer {
  background: #0d1e36 !important;
  color: rgba(255,255,255,0.75) !important;
}

.elementor-location-footer a {
  color: rgba(255,255,255,0.65) !important;
  transition: color 0.2s !important;
}

.elementor-location-footer a:hover {
  color: var(--mkt4-orange) !important;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 32px 0;
}
