/* =============================================================
   HEDGER International — Landing 2: Importação & Exportação
   Paleta: #1A2347 navy (fundo) + #F5B82E âmbar (destaques)
   Fontes: Nexa Light / Nexa Bold (herdadas do styles.css)
   Mobile-first
   ============================================================= */

/* ---- Variáveis Landing 2 ---- */
.l2 {
  --l2-bg:          #1A2347;
  --l2-bg-2:        #212c57;
  --l2-bg-3:        #2a3667;
  --l2-text-light:  #e8ecf6;
  --l2-text-muted:  #9ba8c8;
  --l2-amber:       #F5B82E;
  --l2-amber-dark:  #D9A01A;
  --l2-card-bg:     #ffffff;
  --l2-card-text:   #374151;
  --l2-card-muted:  #6B7280;
  --l2-border:      rgba(255,255,255,0.10);
  --l2-radius:      14px;
  --l2-shadow:      0 8px 32px rgba(0,0,0,0.22);
  background: var(--l2-bg);
  color: var(--l2-text-light);
}

/* ============================================================
   HEADER — versão escura
   ============================================================ */
.l2 .site-header--dark {
  background: var(--l2-bg);
  border-bottom: 1px solid var(--l2-border);
}
.l2 .site-header--dark .logo img {
  filter: none;
}
.l2 .main-nav--light a {
  color: var(--l2-text-light);
}
.l2 .main-nav--light a:hover,
.l2 .main-nav--light a.active {
  color: var(--l2-amber);
}
.l2 .main-nav--light a.active::after {
  background: var(--l2-amber);
}
.l2 .lang-current--light {
  color: var(--l2-text-light);
}
.l2 .btn-primary-light {
  background: var(--l2-amber);
  color: var(--l2-bg);
  font-weight: 700;
}
.l2 .btn-primary-light:hover {
  background: var(--l2-amber-dark);
  color: var(--l2-bg);
}
.l2 .menu-toggle--light span {
  background: var(--l2-text-light);
}

/* ============================================================
   HERO — Landing 2  (estilo full-screen com foto)
   ============================================================ */
.l2-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #0d1429;
}

/* ---- Slider de fundo ---- */
.l2-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.l2-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.l2-slide.active {
  opacity: 1;
}

/* Overlay: escurece à esquerda para legibilidade */
.l2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 16, 40, 0.80) 0%,
    rgba(10, 16, 40, 0.58) 55%,
    rgba(10, 16, 40, 0.32) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Dots */
.l2-slider-dots {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.l2-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.l2-dot.active {
  background: var(--l2-amber);
  transform: scale(1.3);
}
.l2-dot:hover {
  background: rgba(255,255,255,0.7);
}

.l2-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.l2-hero-content {
  max-width: 640px;
}

/* Eyebrow */
.l2-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--l2-amber);
  margin-bottom: 1.1rem;
}

/* Título principal */
.l2-hero h1,
#l2-hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.l2-highlight {
  color: var(--l2-amber);
}

/* Subtítulo */
.l2-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(232, 236, 246, 0.88);
  line-height: 1.7;
  margin-bottom: 2.2rem;
}
.l2-hero-subtitle strong {
  color: #ffffff;
}

/* CTAs */
.l2-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-amber {
  background: var(--l2-amber);
  color: var(--l2-bg);
  font-weight: 700;
  border-radius: 8px;
  padding: 0.8rem 1.9rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.22s ease, transform 0.15s ease;
  box-shadow: 0 4px 18px rgba(245,184,46,0.30);
}
.btn-amber:hover {
  background: var(--l2-amber-dark);
  color: var(--l2-bg);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.30);
  border-radius: 8px;
  padding: 0.8rem 1.9rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(6px);
  transition: border-color 0.22s, color 0.22s, background 0.22s;
}
.btn-outline-light:hover {
  border-color: var(--l2-amber);
  color: var(--l2-amber);
  background: rgba(245,184,46,0.08);
}

/* Badges de serviço */
.l2-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.l2-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100px;
  padding: 0.38rem 0.95rem;
  backdrop-filter: blur(4px);
}
.l2-trust-badge svg {
  width: 13px;
  height: 13px;
  color: var(--l2-amber);
  flex-shrink: 0;
}

/* Seta scroll-down */
.l2-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroScrollBounce 2.2s ease-in-out infinite;
  text-decoration: none;
}
.l2-hero-scroll svg {
  width: 22px;
  height: 22px;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Responsivo */
@media (max-width: 768px) {
  .l2-hero {
    min-height: 90vh;
  }
  .l2-hero-bg {
    background-position: 65% 30%;
  }
  .l2-hero::before {
    background: linear-gradient(
      180deg,
      rgba(10, 16, 40, 0.70) 0%,
      rgba(10, 16, 40, 0.55) 100%
    );
  }
}

/* ============================================================
   SERVIÇOS — Layout principal
   ============================================================ */
.l2-services {
  padding: 80px 0 100px;
  background: var(--l2-bg);
}
.l2-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.l2-section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--l2-amber);
  margin-bottom: 0.75rem;
}
.l2-section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.l2-section-lead {
  font-size: 1rem;
  color: var(--l2-text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Abas principais (Exportação / Importação) ---- */
.l2-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--l2-border);
}
.l2-tab {
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Nexa", sans-serif;
  color: var(--l2-text-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.22s, border-color 0.22s;
  letter-spacing: 0.01em;
}
.l2-tab:hover {
  color: var(--l2-text-light);
}
.l2-tab.active {
  color: var(--l2-amber);
  border-bottom-color: var(--l2-amber);
}

/* ---- Navegação de serviços (dentro de cada aba) ---- */
.l2-service-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.l2-service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 1.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: "Nexa", sans-serif;
  position: relative;
  transition: opacity 0.2s;
  max-width: 200px;
}
.l2-service-btn-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--l2-text-muted);
  line-height: 1.3;
  transition: color 0.2s;
  margin-bottom: 0.35rem;
}
.l2-service-btn-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--l2-text-muted);
  opacity: 0.6;
  transition: color 0.2s;
}
.l2-service-btn .l2-service-arrow {
  width: 14px;
  height: 14px;
  color: var(--l2-text-muted);
  margin-top: 0.35rem;
  opacity: 0;
  transition: opacity 0.2s, color 0.2s;
}
.l2-service-btn.active .l2-service-btn-title,
.l2-service-btn:hover .l2-service-btn-title {
  color: var(--l2-amber);
}
.l2-service-btn.active .l2-service-btn-sub,
.l2-service-btn:hover .l2-service-btn-sub {
  color: var(--l2-amber);
  opacity: 1;
}
.l2-service-btn.active .l2-service-arrow,
.l2-service-btn:hover .l2-service-arrow {
  opacity: 1;
  color: var(--l2-amber);
}
.l2-service-btn.active .l2-service-btn-title {
  border-bottom: 2px solid var(--l2-amber);
  padding-bottom: 4px;
}

.l2-service-divider {
  font-size: 1.8rem;
  color: var(--l2-border);
  line-height: 1;
  align-self: center;
  padding: 0 0.25rem;
  user-select: none;
}

/* ---- Painel de conteúdo do serviço ---- */
.l2-service-content {
  display: none;
  animation: fadeInUp 0.3s ease both;
}
.l2-service-content.active {
  display: block;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.l2-service-card {
  background: var(--l2-card-bg);
  border-radius: var(--l2-radius);
  padding: 2.5rem 3rem;
  box-shadow: var(--l2-shadow);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.l2-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2.5rem;
  right: 2.5rem;
  height: 3px;
  background: var(--l2-amber);
  border-radius: 0 0 4px 4px;
}
.l2-service-card-title {
  font-size: 1.4rem;
  color: var(--l2-bg);
  margin-bottom: 1rem;
}
.l2-service-card-text {
  font-size: 1rem;
  color: var(--l2-card-text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.l2-service-card-text strong {
  color: var(--l2-bg);
  font-weight: 700;
}
.l2-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.6rem 1.5rem;
}
.l2-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.93rem;
  color: var(--l2-card-muted);
  line-height: 1.5;
}
.l2-service-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--l2-amber);
  margin-top: 0.45em;
}
.l2-service-cta {
  margin-top: 0.5rem;
}

/* ============================================================
   CLIENTES — Landing 2
   ============================================================ */
.l2-clients {
  padding: 72px 0 80px;
  background: #f5f7fa;
}
.l2-clients .l2-section-header {
  margin-bottom: 36px;
}
.l2-clients .l2-section-title {
  color: #1A2347;
}
.l2-clients .l2-section-eyebrow {
  color: #F5B82E;
}
.l2-clients-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.l2-client-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.l2-client-slot:hover {
  border-color: #F5B82E;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.l2-client-slot img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.22s ease;
}
.l2-client-slot:hover img { transform: scale(1.05); }
@media (max-width: 768px) {
  .l2-clients-row { grid-template-columns: repeat(2, 1fr); }
  .l2-client-slot { height: 80px; }
}

/* ============================================================
   PROJETOS — Landing 2
   ============================================================ */
.l2-projects {
  padding: 72px 0 80px;
  background: var(--l2-bg-2);
}
.l2-project-card {
  background: var(--l2-card-bg);
  border-radius: var(--l2-radius);
  padding: 3rem 3.5rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--l2-shadow);
  position: relative;
}
.l2-project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3rem;
  right: 3rem;
  height: 3px;
  background: var(--l2-amber);
  border-radius: 0 0 4px 4px;
}
.l2-project-logo {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}
.l2-project-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l2-bg);
  background: var(--l2-amber);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  margin-bottom: 1.5rem;
}
.l2-project-quote {
  font-size: 1rem;
  color: var(--l2-card-text);
  line-height: 1.8;
  margin: 0 0 1.75rem;
  font-style: normal;
  border: none;
  padding: 0;
}
.l2-project-cta {
  display: inline-flex;
}

/* ============================================================
   CONTATO — Landing 2
   ============================================================ */
.l2-contact {
  padding: 80px 0 100px;
  background: var(--l2-bg-2);
}
.l2-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.l2-contact-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  margin-bottom: 1rem;
}
.l2-contact-lead {
  font-size: 1rem;
  color: var(--l2-text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.l2-contact-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.l2-contact-trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--l2-text-light);
}
.l2-contact-trust svg {
  width: 15px;
  height: 15px;
  color: var(--l2-amber);
  flex-shrink: 0;
}

/* ---- Ajustes finais-cta para L2 ---- */
.l2-final-cta {
  background: var(--l2-bg);
}

/* Blocos de contato direto */
.l2-contact-details {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.l2-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.l2-contact-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--l2-amber);
}
.l2-contact-phones {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.l2-contact-phones li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--l2-text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.l2-contact-phones li a:hover { color: var(--l2-amber); }
.l2-contact-phones li a svg { color: var(--l2-amber); flex-shrink: 0; }
.l2-contact-phones li a strong { color: var(--l2-amber); font-weight: 700; }
.l2-contact-email {
  font-size: 0.9rem;
  color: var(--l2-text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.l2-contact-email:hover { color: var(--l2-amber); }
.l2-contact-info-text {
  font-size: 0.88rem;
  color: var(--l2-text-muted);
  line-height: 1.6;
}
.l2-contact-info-text span {
  font-size: 0.78rem;
  opacity: 0.7;
}

/* Formulário herdado do styles.css — ajustes de cor */
.l2-form .form-consent label a {
  color: var(--l2-amber);
}
.l2-form .form-consent label {
  color: var(--l2-text-muted);
}
.l2 .form-row label {
  color: var(--l2-text-light);
}
.l2 .form-row input,
.l2 .form-row select,
.l2 .form-row textarea {
  background: rgba(255,255,255,0.06);
  border-color: var(--l2-border);
  color: var(--l2-text-light);
  color-scheme: dark;
}
.l2 .form-row input::placeholder,
.l2 .form-row textarea::placeholder {
  color: var(--l2-text-muted);
}
.l2 .form-row input:focus,
.l2 .form-row select:focus,
.l2 .form-row textarea:focus {
  border-color: var(--l2-amber);
  background: rgba(255,255,255,0.09);
  outline: none;
  box-shadow: 0 0 0 3px rgba(245,184,46,0.18);
}
.l2 .form-row select option {
  background: var(--l2-bg);
  color: var(--l2-text-light);
}
.l2 .form-consent input[type="checkbox"] {
  accent-color: var(--l2-amber);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 900px) {
  .l2-contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .l2-service-card {
    padding: 2rem 1.5rem;
  }
  .l2-service-card::before {
    left: 1.5rem;
    right: 1.5rem;
  }
}
@media (max-width: 640px) {
  .l2-hero {
    padding: 100px 0 60px;
  }
  .l2-tab {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  .l2-service-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .l2-service-btn {
    flex-direction: row;
    max-width: 100%;
    text-align: left;
    border: 1px solid var(--l2-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
    background: rgba(255,255,255,0.04);
  }
  .l2-service-btn.active {
    background: rgba(245,184,46,0.08);
    border-color: var(--l2-amber);
  }
  .l2-service-btn-title {
    border-bottom: none !important;
  }
  .l2-service-divider {
    display: none;
  }
  .l2-service-btn .l2-service-arrow {
    margin-left: auto;
    margin-top: 0;
    opacity: 1;
  }
  .l2-service-list {
    grid-template-columns: 1fr;
  }
}
