/* Led Mídia — Theme Builder Header/Footer */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
  --brand-primary:      #E1101A;
  --brand-primary-dark: #B10D14;
  --brand-primary-soft: #FEE2E4;
  --neutral-0:    #FFFFFF;
  --neutral-100:  #F4F5F7;
  --neutral-200:  #E2E8F0;
  --neutral-500:  #64748B;
  --neutral-900:  #0F172A;
  --neutral-950:  #020617;
  --accent-success: #059669;
  --accent-success-dark: #047857;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 28px; font-family: var(--font-display);
  font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  border-radius: var(--radius-md); border: 1px solid transparent;
  transition: all .2s ease; white-space: nowrap;
  text-decoration: none; cursor: pointer;
}
.btn--lg { height: 60px; padding: 0 36px; font-size: 16px; }
.btn--sm { height: 44px; padding: 0 20px; font-size: 14px; }
.btn--primary {
  background: var(--brand-primary); color: white; border-color: var(--brand-primary);
}
.btn--primary:hover {
  background: var(--brand-primary-dark); border-color: var(--brand-primary-dark);
  transform: translateY(-1px); box-shadow: 0 8px 24px rgba(225,16,26,0.35);
}
.btn--whatsapp {
  background: var(--accent-success); color: white; border-color: var(--accent-success);
}
.btn--whatsapp:hover {
  background: var(--accent-success-dark); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(5,150,105,0.3);
}
.btn--outline-dark {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline-dark:hover {
  border-color: white; color: white;
  background: rgba(255,255,255,0.06);
}
.btn--block { width: 100%; }

/* Header — dark, sticky, blur */
.tb-header {
  position: fixed !important; top: 0; left: 0; right: 0; z-index: 80 !important;
  background: rgba(2,6,23,0.5) !important;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent !important;
  transition: all .3s ease !important;
  height: 80px !important;
}
.tb-header.elementor-sticky--effects {
  height: 64px !important;
  background: rgba(2,6,23,0.92) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
.tb-header > .e-con-inner {
  max-width: 1280px; padding: 0 24px;
}
@media (min-width: 1024px) {
  .tb-header > .e-con-inner { padding: 0 48px; }
}

/* Real SVG logo — just needs height constraint */
.tb-header .elementor-widget-html:first-child a {
  display: flex !important; align-items: center !important;
}
.tb-header .elementor-widget-html:first-child svg {
  height: 28px; width: auto;
}

/* Nav menu links */
.tb-header .elementor-nav-menu--main .elementor-item {
  color: rgba(255,255,255,0.75) !important;
  font-family: system-ui, -apple-system, sans-serif !important;
  font-size: 14px !important; font-weight: 500 !important;
  padding: 8px 14px !important; line-height: 20px !important;
}
.tb-header .elementor-nav-menu--main .elementor-item:hover,
.tb-header .elementor-nav-menu--main .elementor-item.elementor-item-active {
  color: white !important;
}
.tb-header .elementor-nav-menu--main .elementor-item::after {
  display: none !important;
}

/* Menu toggle */
.tb-header .elementor-menu-toggle {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: white !important; width: 44px; height: 44px;
  border-radius: 8px;
}
.tb-header .elementor-nav-menu--dropdown {
  background: rgba(2,6,23,0.98) !important;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.tb-header .elementor-nav-menu--dropdown .elementor-item {
  color: rgba(255,255,255,0.85) !important;
  font-size: 16px; font-weight: 500;
}

@media (max-width: 1024px) {
  .tb-header .elementor-nav-menu--main { display: none !important; }
}
@media (max-width: 768px) {
  .tb-header .tb-btn-desktop { display: none !important; }
}

/* Footer */
.tb-footer {
  background: var(--neutral-950) !important;
  color: rgba(255,255,255,0.6);
  padding: 64px 24px 32px !important;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.tb-footer > .e-con-inner { max-width: 1280px; }
@media (min-width: 1024px) {
  .tb-footer { padding-left: 48px !important; padding-right: 48px !important; }
}

.tb-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .tb-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

.tb-footer h4 {
  color: white; font-family: var(--font-display);
  font-size: 14px; font-weight: 600; margin-bottom: 16px;
}
.tb-footer a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  display: block; padding: 4px 0; font-size: 14px;
  transition: color .2s;
}
.tb-footer a:hover { color: var(--brand-primary); }

.tb-footer-desc { font-size: 14px; line-height: 1.6; max-width: 300px; }

.tb-footer-social {
  display: flex; gap: 12px; margin-top: 20px;
}
.tb-footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
  display: grid; place-items: center; text-decoration: none;
  transition: all .2s;
}
.tb-footer-social a:hover { background: var(--brand-primary); color: white; }

.tb-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.tb-footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.tb-footer-bottom a:hover { color: white; }