:root {
  /* Valores padrão — sobrescritos pelo theme-runtime.css.php com as cores do site */
  --djl-primary:      var(--primary,      #0f4c5c);
  --djl-primary-dark: var(--primary-dark, #081c24);
  --djl-secondary:    var(--secondary,    #081c24);
  --djl-accent:       var(--accent,       #d6a64d);
  --djl-footer-accent: var(--primary-light, #2ea7ff);
  --djl-text:         #102028;
  --djl-muted:        #5f6972;
  --djl-surface:      #ffffff;
  --djl-bg:           #f6f7f8;
  --djl-border:       rgba(16, 32, 40, 0.12);
  --djl-shadow:       0 18px 50px rgba(8, 28, 36, 0.18);

  /* Alias para blocos _shared que usam --color-primary / --color-secondary */
  --color-primary:   var(--primary,   #0f4c5c);
  --color-secondary: var(--secondary, #081c24);
}

/* Seletor de idioma no topbar */
.djl-lang-form { margin: 0; }
.djl-lang-select {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
}
.djl-lang-select option { background: #071922; color: #fff; }
.djl-lang-select--offcanvas {
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 10px;
}

body.theme-fds-djl-offcanvas {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(var(--primary-rgb, 15, 76, 92), 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--djl-bg) 100%);
  color: var(--djl-text);
  font-size: 16px;
  line-height: 1.7;
}

html,
body.theme-fds-djl-offcanvas {
  min-height: 100%;
}

.djl-topbar {
  background: var(--djl-secondary);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
}

.djl-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--djl-border);
}

.djl-header .wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.djl-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.djl-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.djl-brand {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--djl-muted);
}

.djl-menu-toggle {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 1px solid var(--djl-border);
  background: linear-gradient(180deg, #fff, #f2f5f7);
  box-shadow: 0 10px 28px rgba(8, 28, 36, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.djl-menu-toggle span {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--djl-text);
  border-radius: 999px;
  display: block;
}

.djl-menu-toggle span::before,
.djl-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--djl-text);
  border-radius: 999px;
}

.djl-menu-toggle span::before { top: -7px; }
.djl-menu-toggle span::after { top: 7px; }

.djl-offcanvas {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(100%, 430px);
  background: linear-gradient(180deg, #071922 0%, #0b2530 100%);
  color: #fff;
  transform: translateX(100%);
  transition: transform 240ms ease;
  z-index: 2000;
  box-shadow: var(--djl-shadow);
  display: flex;
  flex-direction: column;
}

.djl-offcanvas.is-open { transform: translateX(0); }

.djl-offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 12, 0.54);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  z-index: 1900;
}

.djl-offcanvas-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.djl-offcanvas-head {
  padding: 28px 26px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.djl-offcanvas-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 26px 0;
}

.djl-offcanvas-brand img {
  height: 34px;
  width: auto;
}

.djl-offcanvas-brand span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.djl-offcanvas-title {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.djl-offcanvas-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.djl-offcanvas-body {
  padding: 22px 26px 30px;
  overflow-y: auto;
}

.djl-nav {
  display: grid;
  gap: 8px;
}

.djl-menu-item {
  display: grid;
  gap: 8px;
}

.djl-menu-item > a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.35;
  padding: 4px 0;
  transition: transform 160ms ease, color 160ms ease;
}

.djl-menu-item > a:hover {
  color: var(--djl-accent);
  transform: translateX(4px);
}

.djl-submenu {
  display: grid;
  gap: 6px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  margin: 4px 0 8px;
}

.djl-submenu .djl-menu-item > a {
  font-size: 14px;
  opacity: 0.9;
}

.djl-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.35;
  padding: 4px 0;
  transition: transform 160ms ease, color 160ms ease;
}

.djl-nav a:hover {
  color: var(--djl-accent);
  transform: translateX(4px);
}

.theme-fds-djl-offcanvas .container {
  width: min(100% - 32px, 1240px);
}

.theme-fds-djl-offcanvas main {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
}

.theme-fds-djl-offcanvas main section {
  position: relative;
  margin-bottom: 0;
}

.theme-fds-djl-offcanvas main section .container {
  position: relative;
  z-index: 1;
}

.theme-fds-djl-offcanvas main .py-5 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.theme-fds-djl-offcanvas main > *:last-child {
  margin-bottom: 0 !important;
}

.theme-fds-djl-offcanvas main > *:last-child section:last-child,
.theme-fds-djl-offcanvas main > section:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.theme-fds-djl-offcanvas main h1,
.theme-fds-djl-offcanvas main h2,
.theme-fds-djl-offcanvas main h3,
.theme-fds-djl-offcanvas main h4 {
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.theme-fds-djl-offcanvas main .lead {
  color: rgba(16, 32, 40, 0.82);
}

.theme-fds-djl-offcanvas main .btn {
  border-radius: 14px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
}

.theme-fds-djl-offcanvas main .btn-primary,
.theme-fds-djl-offcanvas main .btn-success {
  background: linear-gradient(135deg, var(--djl-primary), var(--djl-primary-dark));
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(var(--primary-rgb, 15, 76, 92), 0.22);
}

.theme-fds-djl-offcanvas main .btn-outline-primary {
  color: var(--djl-primary);
  border-color: rgba(var(--primary-rgb, 15, 76, 92), 0.28);
}

.theme-fds-djl-offcanvas main .card,
.theme-fds-djl-offcanvas main .shadow-sm {
  border-color: rgba(16, 32, 40, 0.08);
  box-shadow: 0 18px 40px rgba(8, 28, 36, 0.08) !important;
}

.theme-fds-djl-offcanvas main .bg-light {
  background: linear-gradient(180deg, #f8f7f5, #ffffff) !important;
}

.theme-fds-djl-offcanvas .djl-page-hero {
  padding: 5rem 0 4rem;
}

.theme-fds-djl-offcanvas .djl-page-hero h1 {
  max-width: 980px;
  font-weight: 700;
}

.theme-fds-djl-offcanvas .djl-page-grid {
  display: grid;
  gap: 24px;
}

.theme-fds-djl-offcanvas .djl-page-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 32, 40, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 44px rgba(8, 28, 36, 0.08);
}

.theme-fds-djl-offcanvas .djl-page-panel + .djl-page-panel {
  margin-top: 20px;
}

.theme-fds-djl-offcanvas .djl-section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--djl-primary);
  font-weight: 800;
  margin-bottom: 12px;
}

.theme-fds-djl-offcanvas .djl-kicker {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--djl-muted);
}

.theme-fds-djl-offcanvas .djl-hero-box {
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb, 15, 76, 92), 0.08), rgba(214, 166, 77, 0.08));
  border: 1px solid rgba(16, 32, 40, 0.08);
  padding: 32px;
}

.theme-fds-djl-offcanvas .djl-hero-box .btn {
  min-width: 180px;
}

.theme-fds-djl-offcanvas .djl-faq-item,
.theme-fds-djl-offcanvas .djl-list-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 32, 40, 0.08);
}

.theme-fds-djl-offcanvas .djl-faq-item:last-child,
.theme-fds-djl-offcanvas .djl-list-item:last-child {
  border-bottom: 0;
}

.djl-contact-card {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 18px;
}

.djl-contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}

.djl-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}

.djl-contact-icon i {
  font-size: 18px;
  line-height: 1;
}

.djl-social-link .icon {
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.djl-social-link .icon i {
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.djl-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.djl-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.djl-social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.djl-contact-item strong,
.djl-contact-item span {
  display: block;
}

.djl-contact-item strong {
  font-size: 16px;
}

.djl-contact-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.djl-shell {
  min-height: calc(100vh - 84px);
}

/* ============================================================
   HERO SLIDER — compatível com render_hero_slider do renderer
   ============================================================ */
.hero-slider,
.hero-slide {
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Overlay escuro sobre a imagem de fundo */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 20, 36, 0.65) 0%,
    rgba(8, 20, 36, 0.45) 100%);
  pointer-events: none;
}

/* Halo de cor primária */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 60%,
    rgba(var(--primary-rgb, 15, 76, 92), 0.18) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 100px 20px;
}

.hero-content h1 {
  color: #fff !important;
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.4) !important;
  margin-bottom: 1rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(1rem, 2.5vw, 1.25rem) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3) !important;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .btn {
  margin-top: 2rem;
  border-radius: 12px !important;
  padding: 0.85rem 2rem !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 768px) {
  .hero-slider,
  .hero-slide { min-height: 360px; }
  .hero-content { padding: 72px 16px; }
}

/* ============================================================ */

.djl-footer {
  margin-top: 0;
  background: linear-gradient(180deg, #0b2530, #06161d);
  color: rgba(255, 255, 255, 0.82);
  padding: 76px 0 0;
}

.djl-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(180px, 1fr) minmax(220px, 1fr) minmax(260px, 1.1fr);
  gap: 34px 42px;
}

.djl-footer-logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 1.2rem;
}

.djl-footer-site-name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.djl-footer-accent-line {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--djl-footer-accent, #2ea7ff);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.djl-footer-desc {
  font-size: 1rem;
  line-height: 1.9;
  max-width: 280px;
  margin-bottom: 1.8rem;
}

.djl-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.djl-footer-social {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.55rem;
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.djl-footer-social:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--primary-rgb, 15, 76, 92), .45);
  color: var(--djl-footer-accent, #2ea7ff);
  background: rgba(var(--primary-rgb, 15, 76, 92), .12);
}

.djl-footer-title {
  color: var(--djl-footer-accent, #2ea7ff) !important;
  font-size: 1rem !important;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.djl-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.05rem;
}

.djl-footer-links li {
  margin: 0;
  padding: 0;
}

.djl-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.45;
}

.djl-footer-links a i {
  color: var(--djl-footer-accent, #2ea7ff);
  font-size: 1rem;
  line-height: 1;
}

.djl-footer-links a:hover,
.djl-footer-contact-item a:hover,
.djl-footer-map-link:hover,
.djl-footer-utility-links a:hover {
  color: var(--djl-footer-accent, #2ea7ff);
}

.djl-footer-contact-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.djl-footer-contact-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.9rem;
  align-items: start;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  line-height: 1.55;
}

.djl-footer-contact-item i {
  color: var(--djl-footer-accent, #2ea7ff);
  font-size: 1.45rem;
  line-height: 1;
  margin-top: 2px;
}

.djl-footer-contact-item a,
.djl-footer-map-link,
.djl-footer-utility-links a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
}

.djl-footer-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  margin-top: 1.35rem;
}

.djl-footer-map-wrap iframe {
  width: 100%;
  height: 180px;
  border: 0;
  display: block;
}

.djl-footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 1rem;
}

.djl-footer-map-link i {
  color: var(--djl-footer-accent, #2ea7ff);
  font-size: 1.3rem;
}

.djl-footer-bottom {
  margin-top: 54px;
  padding: 28px 0 30px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px 28px;
  flex-wrap: wrap;
}

.djl-footer-copy {
  display: grid;
  gap: 0.35rem;
  color: rgba(255,255,255,.84);
}

.djl-footer-copy strong {
  color: #fff;
  font-size: 1.02rem;
}

.djl-footer-copy span {
  font-size: 0.98rem;
}

.djl-footer-signature {
  display: inline-flex;
  align-items: center;
  margin-top: 0.9rem;
  text-decoration: none;
  opacity: 0.92;
}

.djl-footer-signature img {
  height: 50px;
  width: auto;
  display: block;
}

.djl-footer-utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}

.djl-footer-utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
}

.djl-footer-utility-links i {
  color: var(--djl-footer-accent, #2ea7ff);
  font-size: 1.2rem;
}

.djl-page-hero {
  background: linear-gradient(135deg, rgba(var(--primary-rgb, 15, 76, 92), 0.08), rgba(214, 166, 77, 0.12));
  border: 1px solid var(--djl-border);
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 18px 48px rgba(8, 28, 36, 0.06);
}

.djl-page-shell {
  padding: 28px 0 12px;
}

.djl-form-panel,
.djl-map-panel,
.djl-info-panel {
  background: #fff;
  border: 1px solid var(--djl-border);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(8, 28, 36, 0.06);
}

.djl-form-panel .form-control,
.djl-form-panel .form-select {
  border-radius: 14px;
  min-height: 52px;
}

.djl-form-panel label {
  font-size: 13px;
  font-weight: 700;
  color: var(--djl-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.djl-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--djl-primary);
  background: rgba(var(--primary-rgb, 15, 76, 92), 0.08);
  padding: 8px 14px;
  border-radius: 999px;
}

.djl-timeline {
  display: grid;
  gap: 16px;
}

.djl-timeline-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.djl-timeline-step .dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--djl-primary);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.djl-soft-card {
  background: #fff;
  border: 1px solid var(--djl-border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(8, 28, 36, 0.05);
}

.djl-footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 768px) {
  .djl-header .wrap {
    min-height: 72px;
  }

  .djl-offcanvas {
    width: 100%;
  }

  .djl-nav a {
    font-size: 17px;
  }

  .djl-footer {
    padding-top: 56px;
  }

  .djl-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .djl-footer-desc {
    max-width: none;
  }

  .djl-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .djl-footer-utility-links {
    gap: 14px 20px;
  }
}

/* ============================================================
   HERO SLIDER — DJL Premium (parallax, overlays, actions)
   ============================================================ */
.djl-hero-slider { position: relative; }

.djl-hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  will-change: transform;
}

.djl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 18, 28, 0.72) 0%,
    rgba(8, 28, 36, 0.50) 60%,
    rgba(6, 18, 28, 0.68) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.djl-hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 25% 70%,
    rgba(var(--primary-rgb, 15, 76, 92), 0.22) 0%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 2;
}

.djl-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 110px 0 100px;
  max-width: 800px;
  text-align: left;
}

.djl-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.djl-hero-content h1 {
  color: #fff !important;
  font-size: clamp(2rem, 4.5vw, 3.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.08 !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.42) !important;
  margin-bottom: 1.1rem !important;
}

.djl-hero-sub {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: clamp(1rem, 2.2vw, 1.2rem) !important;
  max-width: 600px;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.32) !important;
  margin-bottom: 2rem !important;
}

.djl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.djl-hero-btn {
  background: linear-gradient(135deg, var(--djl-primary, #0f4c5c), var(--djl-primary-dark, #081c24)) !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 0.9rem 2rem !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 32px rgba(var(--primary-rgb, 15, 76, 92), 0.32) !important;
  color: #fff !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease !important;
}
.djl-hero-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 40px rgba(var(--primary-rgb, 15, 76, 92), 0.44) !important;
}

.djl-hero-btn-ghost {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  border-radius: 14px !important;
  padding: 0.9rem 2rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  backdrop-filter: blur(6px);
  transition: background 0.18s ease !important;
}
.djl-hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .djl-hero-content { padding: 80px 0 72px; }
  .djl-hero-content h1 { font-size: 2rem !important; }
}

/* ============================================================
   PAGE BANNER — inner pages
   ============================================================ */
.djl-page-banner {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.djl-page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,18,28,.65) 0%, rgba(8,28,36,.48) 100%);
  pointer-events: none;
}

.djl-page-banner-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 64px;
  color: #fff;
}

.djl-page-banner-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--djl-accent, #d6a64d);
  margin-bottom: 14px;
}

.djl-page-banner-title {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 14px rgba(0,0,0,.36);
  margin-bottom: 0.75rem;
  color: #fff !important;
}

.djl-page-banner-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.84);
  max-width: 620px;
  margin-bottom: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,.28);
}

/* ============================================================
   SECTION HEADER — shared title/subtitle before grids
   ============================================================ */
.djl-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.djl-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--djl-text, #102028);
  margin-bottom: 0.75rem;
}

.djl-section-sub {
  font-size: 1.1rem;
  color: var(--djl-muted, #5f6972);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FEATURE GRID — premium icon cards
   ============================================================ */
.djl-feature-grid {
  padding: 5rem 0;
  background: var(--djl-bg, #f6f7f8);
}

.djl-feature-grid--dark {
  background: linear-gradient(180deg, #071922, #0b2530);
}
.djl-feature-grid--dark .djl-section-title { color: #fff; }
.djl-feature-grid--dark .djl-section-sub   { color: rgba(255,255,255,.65); }

.djl-feat-card {
  background: #fff;
  border: 1px solid rgba(16, 32, 40, 0.08);
  border-radius: 22px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 16px 40px rgba(8, 28, 36, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-align: center;
}

.djl-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(8, 28, 36, 0.13);
}

.djl-feature-grid--dark .djl-feat-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}

.djl-feat-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(var(--primary-rgb, 15, 76, 92), 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--djl-primary, #0f4c5c);
  margin: 0 auto 1.1rem;
}

.djl-feature-grid--dark .djl-feat-icon {
  background: rgba(var(--primary-rgb, 15, 76, 92), 0.24);
  color: var(--djl-accent, #d6a64d);
}

.djl-feat-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--djl-text, #102028);
}

.djl-feature-grid--dark .djl-feat-title { color: #fff; }

.djl-feat-text {
  font-size: 0.9rem;
  color: var(--djl-muted, #5f6972);
  margin-bottom: 0;
  line-height: 1.6;
}
.djl-feature-grid--dark .djl-feat-text { color: rgba(255,255,255,.62); }

/* ============================================================
   STATS BAR
   ============================================================ */
.djl-stats-bar {
  padding: 3.5rem 0;
  background: var(--djl-bg, #f6f7f8);
  border-top: 1px solid var(--djl-border, rgba(16,32,40,.1));
  border-bottom: 1px solid var(--djl-border, rgba(16,32,40,.1));
}

.djl-stats-bar--dark {
  background: linear-gradient(135deg, var(--djl-primary, #0f4c5c), var(--djl-secondary, #081c24));
  border-color: transparent;
}

.djl-stats-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--djl-muted, #5f6972);
  margin-bottom: 2rem;
}

.djl-stats-bar--dark .djl-stats-label { color: rgba(255,255,255,.55); }

.djl-stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3.5rem;
}

.djl-stat-item {
  text-align: center;
  min-width: 140px;
}

.djl-stat-icon {
  font-size: 1.6rem;
  color: var(--djl-primary, #0f4c5c);
  margin-bottom: 0.5rem;
}

.djl-stats-bar--dark .djl-stat-icon { color: #fff; }

.djl-stat-value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--djl-text, #102028);
  margin-bottom: 0.35rem;
}

.djl-stats-bar--dark .djl-stat-value { color: #fff; }

.djl-stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--djl-muted, #5f6972);
}

.djl-stats-bar--dark .djl-stat-label { color: rgba(255,255,255,.62); }

/* ============================================================
   TEXT SECTION — with optional image
   ============================================================ */
.djl-text-section {
  padding: 5rem 0;
  background: #fff;
}

.djl-text-section--dark {
  background: linear-gradient(180deg, #071922, #0b2530);
  color: #fff;
}

.djl-text-section--center { text-align: center; }

.djl-text-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--djl-text, #102028);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.djl-text-section--dark .djl-text-section-title { color: #fff; }

.djl-text-section-body {
  font-size: 1.05rem;
  color: var(--djl-muted, #5f6972);
  line-height: 1.8;
}
.djl-text-section--dark .djl-text-section-body { color: rgba(255,255,255,.74); }
.djl-text-section-body p { margin-bottom: 1rem; }
.djl-text-section-body p:last-child { margin-bottom: 0; }

.djl-text-section-btn {
  margin-top: 1.8rem;
  border-radius: 14px !important;
  padding: 0.85rem 2rem !important;
  font-weight: 700 !important;
}

.djl-text-section-img-wrap {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(8, 28, 36, 0.16);
}

.djl-text-section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.djl-text-section-img-wrap:hover .djl-text-section-img {
  transform: scale(1.03);
}

/* ============================================================
   CTA SECTION — premium full-width
   ============================================================ */
.djl-cta-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}

.djl-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,18,28,.78) 0%, rgba(8,28,36,.62) 100%);
  pointer-events: none;
}

.djl-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.djl-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 3px 16px rgba(0,0,0,.3);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.djl-cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.84);
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

.djl-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.djl-cta-btn-primary {
  background: #fff !important;
  color: var(--djl-primary, #0f4c5c) !important;
  border-radius: 14px !important;
  padding: 0.9rem 2.2rem !important;
  font-weight: 800 !important;
  border: none !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.2) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease !important;
}
.djl-cta-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,.3) !important;
}

.djl-cta-btn-ghost {
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.36) !important;
  border-radius: 14px !important;
  padding: 0.9rem 2rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  backdrop-filter: blur(6px);
}
.djl-cta-btn-ghost:hover {
  background: rgba(255,255,255,.22) !important;
  color: #fff !important;
}

/* ============================================================
   COLUMNS FLEX
   ============================================================ */
.djl-columns-section {
  padding: 5rem 0;
  background: #fff;
}

.djl-columns-section--dark {
  background: linear-gradient(180deg, #071922, #0b2530);
}
.djl-columns-section--dark .djl-section-title { color: #fff; }

.djl-col-card {
  background: #fff;
  border: 1px solid rgba(16, 32, 40, 0.08);
  border-radius: 22px;
  padding: 30px 26px;
  height: 100%;
  box-shadow: 0 16px 40px rgba(8, 28, 36, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.djl-col-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(8, 28, 36, 0.12);
}

.djl-columns-section--dark .djl-col-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
}

.djl-col-icon {
  font-size: 1.8rem;
  color: var(--djl-primary, #0f4c5c);
  margin-bottom: 1rem;
}
.djl-columns-section--dark .djl-col-icon { color: var(--djl-accent, #d6a64d); }

/* ============================================================
   SITEMAP
   ============================================================ */
.djl-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.djl-sitemap-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border: 1px solid rgba(16,32,40,.08);
  border-radius: 24px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 20px 44px rgba(8, 28, 36, 0.08);
  height: 100%;
}

.djl-sitemap-card-title {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--djl-primary, #0f4c5c);
  margin-bottom: 1rem;
}

.djl-sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.djl-sitemap-list li {
  margin: 0;
  padding: 0;
}

.djl-sitemap-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(16,32,40,.06);
  color: var(--djl-text, #102028);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(8, 28, 36, 0.04);
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
}

.djl-sitemap-list a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--djl-primary, #0f4c5c);
  box-shadow: 0 0 0 7px rgba(var(--primary-rgb, 15, 76, 92), 0.12);
  flex: 0 0 10px;
}

.djl-sitemap-list a::after {
  content: "\f178";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  color: var(--djl-primary, #0f4c5c);
}

.djl-sitemap-list a:hover {
  color: var(--djl-primary, #0f4c5c);
  border-color: rgba(var(--primary-rgb, 15, 76, 92), 0.16);
  box-shadow: 0 18px 34px rgba(8, 28, 36, 0.10);
  transform: translateY(-2px);
}

.djl-sitemap-list a:hover::before {
  background: var(--djl-primary, #0f4c5c);
}

.djl-sitemap-shell {
  display: grid;
  gap: 28px;
}

.djl-sitemap-hero {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(var(--primary-rgb, 15, 76, 92), 0.18), transparent 32%),
    linear-gradient(135deg, #071922 0%, #0d2b36 100%);
  color: #fff;
  box-shadow: 0 28px 60px rgba(6, 18, 24, 0.18);
}

.djl-sitemap-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.djl-sitemap-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: var(--djl-primary, #d6a64d);
}

.djl-sitemap-hero h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  color: #fff;
}

.djl-sitemap-hero p {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.djl-sitemap-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.djl-sitemap-overview-card {
  padding: 18px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(7, 25, 34, 0.08);
  box-shadow: 0 16px 36px rgba(7, 25, 34, 0.08);
}

.djl-sitemap-overview-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 1;
  color: var(--djl-primary, #0f4c5c);
}

.djl-sitemap-overview-card span {
  color: var(--djl-text, #14212b);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .djl-sitemap-hero {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .djl-sitemap-grid {
    grid-template-columns: 1fr;
  }
}

.djl-col-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  height: 180px;
}
.djl-col-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.djl-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--djl-text, #102028);
  margin-bottom: 0.6rem;
}
.djl-columns-section--dark .djl-col-title { color: #fff; }

.djl-col-body {
  font-size: 0.92rem;
  color: var(--djl-muted, #5f6972);
  line-height: 1.65;
}
.djl-columns-section--dark .djl-col-body { color: rgba(255,255,255,.65); }

.djl-col-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--djl-primary, #0f4c5c);
  text-decoration: none;
  transition: letter-spacing 0.16s ease;
}
.djl-col-link:hover { letter-spacing: 0.04em; }
.djl-columns-section--dark .djl-col-link { color: var(--djl-accent, #d6a64d); }

/* ============================================================
   BLOG LIST
   ============================================================ */
.djl-blog-section {
  padding: 5rem 0;
  background: var(--djl-bg, #f6f7f8);
}

.djl-post-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(8,28,36,.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.djl-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(8,28,36,.13);
}

.djl-post-thumb {
  height: 200px;
  overflow: hidden;
}
.djl-post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.djl-post-card:hover .djl-post-thumb img { transform: scale(1.04); }

.djl-post-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.djl-post-date {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--djl-muted, #5f6972);
  margin-bottom: 0.5rem;
}

.djl-post-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--djl-text, #102028);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.djl-post-excerpt {
  font-size: 0.88rem;
  color: var(--djl-muted, #5f6972);
  flex: 1;
  line-height: 1.6;
}

.djl-post-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--djl-primary, #0f4c5c);
  text-decoration: none;
  transition: letter-spacing 0.16s;
}
.djl-post-link:hover { letter-spacing: 0.04em; }

.djl-news-article {
  max-width: 920px;
}

.djl-news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.djl-news-article-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 76, 92, 0.08);
  border: 1px solid rgba(15, 76, 92, 0.14);
  color: var(--djl-text);
  font-size: 14px;
  font-weight: 600;
}

.djl-news-article-body {
  display: grid;
  gap: 18px;
  color: var(--djl-text);
  font-size: 17px;
  line-height: 1.85;
}

.djl-news-article-body h2,
.djl-news-article-body h3,
.djl-news-article-body h4 {
  color: var(--djl-text);
  font-weight: 800;
  line-height: 1.2;
  margin: 8px 0 0;
}

.djl-news-article-body p,
.djl-news-article-body ul,
.djl-news-article-body ol {
  margin: 0;
}

.djl-news-article-body ul,
.djl-news-article-body ol {
  padding-left: 22px;
}

.djl-news-article-back {
  margin-top: 32px;
}

/* ============================================================
   PARALLAX — disable on touch devices
   ============================================================ */
@media (pointer: coarse), (max-width: 768px) {
  .djl-hero-slide[style*="background-attachment:fixed"],
  .djl-page-banner[style*="background-attachment:fixed"],
  .djl-cta-section[style*="background-attachment:fixed"] {
    background-attachment: scroll !important;
  }
}

/* ============================================================
   DJL CONTACT FORM — djl_contact_form block
   ============================================================ */
.djl-contact-section {
  background: #f8f9fa;
}
.djl-contact-info-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.djl-contact-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--djl-primary);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--djl-accent);
}
.djl-contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.djl-contact-info-item strong {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--djl-muted);
  margin-bottom: .1rem;
}
.djl-contact-info-item p,
.djl-contact-info-item a {
  margin: 0;
  color: var(--djl-text);
  font-size: .9rem;
  text-decoration: none;
}
.djl-contact-info-item a:hover { color: var(--djl-primary); }
.djl-contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--djl-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.djl-contact-info-icon--wa { background: #25d366; }

/* Form card */
.djl-contact-form-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.djl-cf-honeypot { position: absolute; left: -9999px; width: 0; height: 0; overflow: hidden; }
.djl-cf-label {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--djl-muted);
  margin-bottom: .35rem;
  display: block;
}
.djl-cf-input,
.djl-cf-textarea {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: .65rem 1rem;
  font-size: .95rem;
  color: var(--djl-text);
  background: #f8fafc;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.djl-cf-input:focus,
.djl-cf-textarea:focus {
  border-color: var(--djl-primary);
  box-shadow: 0 0 0 3px rgba(10,72,109,.12);
  background: #fff;
}
.djl-cf-textarea { resize: vertical; min-height: 130px; }
.djl-cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--djl-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .8rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  width: 100%;
}
.djl-cf-submit:hover { background: var(--djl-secondary); transform: translateY(-1px); }
.djl-cf-submit:disabled { opacity: .65; cursor: default; transform: none; }
.djl-contact-error-msg {
  background: #fee2e2;
  color: #b91c1c;
  border-radius: 8px;
  padding: .6rem 1rem;
  font-size: .88rem;
  margin-bottom: .75rem;
}
.djl-contact-success {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--djl-primary);
}
.djl-contact-success i { font-size: 3rem; color: #16a34a; }
.djl-contact-success h4 { margin-top: 1rem; font-weight: 700; }

/* ============================================================
   DJL REPRESENTANTES — djl_representantes block
   ============================================================ */
.djl-rep-section {
  background: #f8f9fa;
}
.djl-rep-filters {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.djl-rep-filter-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--djl-muted);
  margin-bottom: .35rem;
  display: block;
}
.djl-rep-select {
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: .6rem 1rem;
  font-size: .95rem;
  color: var(--djl-text);
  background: #f8fafc;
  transition: border-color .2s;
  cursor: pointer;
}
.djl-rep-select:focus { border-color: var(--djl-primary); outline: none; box-shadow: 0 0 0 3px rgba(10,72,109,.1); }
.djl-rep-btn-buscar {
  background: var(--djl-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .65rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.djl-rep-btn-buscar:hover { background: var(--djl-secondary); }

/* Cards */
.djl-rep-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}
.djl-rep-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.djl-rep-card-header {
  background: linear-gradient(135deg, var(--djl-primary), var(--djl-secondary));
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
}
.djl-rep-card-body { padding: 1.25rem; }
.djl-rep-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--djl-primary);
  margin-bottom: .35rem;
}
.djl-rep-card-loc {
  font-size: .83rem;
  color: var(--djl-muted);
  margin-bottom: .85rem;
}
.djl-rep-card-link {
  display: flex;
  align-items: center;
  font-size: .85rem;
  color: var(--djl-text);
  text-decoration: none;
  margin-bottom: .4rem;
  transition: color .15s;
}
.djl-rep-card-link:hover { color: var(--djl-primary); }
.djl-rep-card-link--wa { color: #16a34a; }
.djl-rep-card-link--wa:hover { color: #15803d; }

/* Empty state */
.djl-rep-empty { color: var(--djl-muted); padding: 3rem 0; }
.djl-rep-empty-icon { font-size: 3.5rem; opacity: .3; }
