/* =========================================
   IMPORTAÇÃO DE FONTES (Plus Jakarta Sans)
   Pesos: 400 (Regular), 500 (Medium), 600 (Semi-bold), 700 (Bold), 800 (Extra-bold)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* =========================================
   VARIÁVEIS DE TEMA & IDENTIDADE VISUAL
   ========================================= */
:root {
  /* Cores da Marca */
  --primary: #ea5726;       /* Laranja oficial B2K PAY */
  --primary-dark: #d04518;  /* Hover/Destaque */
  --accent: #10b981;        /* Sucesso/Badges */

  /* TEMA CLARO (Default) */
  --bg-body: #ffffff;
  --bg-light: #fff8f6;      /* Fundo suave com tom quente */
  --bg-card: #ffffff;
  --bg-header: rgba(255, 255, 255, 0.9);
  --text-dark: #0f172a;     /* Grafite escuro */
  --text-muted: #475569;    /* Cinza com legibilidade alta */
  --border-color: #e2e8f0;
  --shadow-color: rgba(15, 23, 42, 0.06);
  --shadow-hover: rgba(234, 87, 38, 0.15);

  /* Textura de Linhas (Light) */
  --grid-line: rgba(15, 23, 42, 0.03);
  --glow-effect: rgba(234, 87, 38, 0.08);

  /* Configurações de Layout */
  --radius: 12px;
  --max-width: 1140px;
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* TEMA NOTURNO / DARK MODE */
[data-theme="dark"] {
  --bg-body: #0b0f17;       /* Fundo escuro profundo */
  --bg-light: #111827;      /* Fundo de seções alternadas */
  --bg-card: #1e293b;       /* Cards escuros elegantes */
  --bg-header: rgba(11, 15, 23, 0.9);
  --text-dark: #f8fafc;     /* Texto claro */
  --text-muted: #94a3b8;    /* Cinza suave para descrições */
  --border-color: #334155;  /* Bordas escuras refinadas */
  --shadow-color: rgba(0, 0, 0, 0.4);
  --shadow-hover: rgba(234, 87, 38, 0.3);

  /* Textura de Linhas (Dark) */
  --grid-line: rgba(255, 255, 255, 0.04);
  --glow-effect: rgba(234, 87, 38, 0.15);
}

/* =========================================
   RESET E REGRA GERAL (+2pt na tipografia)
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

html {
  font-size: 18px; /* Aumentado ~2pt referente ao padrão 16px */
  scroll-behavior: smooth;
}

body {
  color: var(--text-dark);
  background-color: var(--bg-body);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 400;
}
/* =========================================
   HERO FULL BANNER + PNG SOBREPOSTO (COMPLETO E RESPONSIVO)
   ========================================= */

/* Structure & Background */
.hero {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background-color: #0b0f19;
}

/* Reset de Altura e Alinhamento do Splide */
.hero-splide,
.hero-splide .splide__track,
.hero-splide .splide__list {
  height: 100%;
  display: flex !important;
  align-items: flex-end !important;
}

.hero-splide .splide__slide {
  position: relative;
  min-height: 620px;
  width: 100%;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center;
}

/* 1. Imagem de Fundo Full */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 2. Overlay de Contraste */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.55) 50%, rgba(11, 15, 25, 0.2) 100%);
  z-index: 2;
  transition: background 0.3s ease;
}

/* 3. Grid Container (Texto à Esquerda / PNG à Direita) */
.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 24px 0 !important; /* Topo compensa header; base zerada para colar a imagem */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end !important; /* Alinha os dois lados pela base */
}

/* Conteúdo de Texto (Esquerda) */
.hero-text {
  color: #ffffff;
  padding-bottom: 48px !important; /* Dá o respiro necessário para os botões não colarem no fundo */
}

.hero-text h1 {
  font-size: 1.7rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-text h1 span {
  color: var(--primary, #ea580c);
}

.hero-text p {
  font-size: .98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
}

/* Botões de Ação */
.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary, #ea580c);
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #d94e07;
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25d366;
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: #1eb957;
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* 4. Imagem PNG Sobreposta (Direita - Colada na Base) */
.hero-media {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-end !important;
  align-self: flex-end !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  height: 100%;
}

.hero-media img {
  max-width: 100%;
  max-height: 480px;
  height: auto;
  display: block !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  vertical-align: bottom !important;
  object-fit: contain;
  object-position: bottom; /* Trava o enquadramento no chão */
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

/* 5. Controles do Splide (Setas e Paginação) */
.hero-splide .splide__arrows {
  z-index: 4;
}

.hero-splide .splide__arrow {
  background: rgba(255, 255, 255, 0.15) !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 46px;
  height: 46px;
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 4;
}

.hero-splide .splide__arrow:hover {
  background: var(--primary, #ea580c) !important;
  border-color: var(--primary, #ea580c);
  opacity: 1;
}

.hero-splide .splide__pagination {
  bottom: 16px;
  z-index: 4;
  gap: 6px;
}

.hero-splide .splide__pagination__page {
  background: rgba(255, 255, 255, 0.4);
  width: 8px;
  height: 8px;
  border: none;
  transition: all 0.3s ease;
}

.hero-splide .splide__pagination__page.is-active {
  background: var(--primary, #ea580c);
  transform: scale(1.4);
  border-radius: 4px;
}


/* =========================================
   6. MEDIA QUERIES E RESPONSIVIDADE (INTEGRADO)
   ========================================= */

/* Resoluções Intermediárias / Notebooks (720px a 1500px) */
@media (min-width: 720px) and (max-width: 1500px) {
  .hero-splide .splide__slide {
    min-height: 500px;
  }

  .hero-container {
    padding-top: 105px !important;
    padding-bottom: 0 !important; /* Preserva a imagem colada à base */
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
  }

  .hero-text {
    padding-bottom: 32px !important; /* Move o espaçamento para o texto */
  }

  .hero-text h1 {
    font-size: 2.1rem;
    line-height: 1.18;
    margin-bottom: 12px;
  }

  .hero-text p {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .hero-media img {
    max-height: 380px;
  }

  .btn-primary,
  .btn-whatsapp {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Tablets e Telas Médias (até 992px) */
@media (max-width: 992px) {
  .hero-splide .splide__slide {
    min-height: auto;
  }

  .hero-slide-overlay {
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.88) 0%, rgba(11, 15, 25, 0.95) 100%);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 130px !important;
    padding-bottom: 0 !important; /* Preserva a imagem colada à base */
    gap: 32px;
  }

  .hero-text {
    max-width: 100%;
    padding-bottom: 16px !important;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-media {
    justify-content: center !important;
  }

  .hero-media img {
    max-height: 320px;
  }
}

/* Celulares (até 576px) */
@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-whatsapp {
    text-align: center;
    justify-content: center;
  }
}
/* =========================================
   CONTROLE DE LOGO (LIGHT / DARK MODE)
   ========================================= */
.logo-img {
  max-height: 34px; /* Mantém a altura correta do header */
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

/* Estado Padrão (Modo Claro) */
.logo-dark {
  display: none !important; /* Esconde a logo dark no tema claro */
}

.logo-light {
  display: block !important;
}

/* Estado Modo Noturno (Dark Mode) */
[data-theme="dark"] .logo-dark {
  display: block !important; /* Exibe a logo dark no modo noturno */
}

[data-theme="dark"] .logo-light {
  display: none !important; /* Esconde a logo clara no modo noturno */
}

/* Ajuste no Mobile */
@media (max-width: 768px) {
  .logo-img {
    max-height: 28px;
  }
}
/* =========================================
   UTILITÁRIOS E TEXTURAS DE FUNDO
   ========================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Textura com linhas em grade fina */
.bg-grid-texture {
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* BOTOES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600; /* Semi-bold */
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-card {
  width: 100%;
  margin-top: 16px;
  padding: 12px 20px;
  font-size: 0.95rem;
}

/* TIPOGRAFIA PADRÃO COM SEMI-BOLD E BOLD */
.section-title {
  font-size: 2.35rem;
  font-weight: 800; /* Extra-bold */
  text-align: center;
  margin-bottom: 12px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1.15rem;
  font-weight: 500; /* Medium */
}

/* BOTÃO DE ALTERNAR TEMA */
.btn-theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

[data-theme="dark"] .icon-sun { display: inline; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun, :root:not([data-theme="dark"]) .icon-sun { display: none; }
[data-theme="light"] .icon-moon, :root:not([data-theme="dark"]) .icon-moon { display: inline; }

/* =========================================
   HEADER
   ========================================= */
header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 34px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600; /* Semi-bold */
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}


/* =========================================
   QUEM SOMOS
   ========================================= */
.about-section {
  padding: 90px 0;
  background-color: var(--bg-body);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-content p {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.mvv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.mvv-card {
  background: var(--bg-light);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease;
}

.mvv-card:hover {
  transform: translateY(-3px);
}

.mvv-card h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700; /* Bold */
}

.mvv-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* =========================================
   CARROSSEL DE SOLUÇÕES (CARDS)
   ========================================= */
.solutions-section {
  padding: 90px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
  /* Aplicação da textura de grade sutil */
  background-image:
    radial-gradient(circle at 10% 90%, var(--glow-effect) 0%, transparent 35%),
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
}

.solutions-carousel {
  padding: 30px 0;
  max-width: 100%;
}

.solution-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
  height: 100%;
  transform: scale(0.90);
  opacity: 0.65;
  box-shadow: 0 4px 12px var(--shadow-color);
}

.solutions-carousel .splide__track {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
  margin: -32px 0; /* Compensa o padding visualmente no layout */
}

.splide__slide.is-active .solution-card {
  transform: scale(1.08); /* Aumentado de 1.02 para 1.08 */
  opacity: 1;
  box-shadow: 0 20px 40px var(--shadow-color);
  border-color: var(--primary);
  border-width: 2px; /* Deixa a linha laranja um pouco mais grossa para destacar */
}

.service-image {
  max-width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 24px;
}

.solution-content {
  flex-grow: 1;
}

.solution-card h3 {
  font-size: 1.25rem;
  font-weight: 700; /* Bold */
  margin-bottom: 8px;
  color: var(--text-dark);
}

.solution-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

/* ESTILOS DE DESTAQUE CENTRAL (CARROSSEL) */
.splide__slide.is-active .solution-card {
  transform: scale(1.02);
  opacity: 1;
  box-shadow: 0 16px 32px var(--shadow-color);
  border-color: var(--primary);
}

.splide__arrow {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  opacity: 0.9;
}
.splide__arrow svg { fill: var(--text-dark); }
.splide__arrow:hover { background: var(--primary); }
.splide__arrow:hover svg { fill: #ffffff; }

.splide__pagination__page.is-active { background: var(--primary); }

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600; /* Semi-bold */
}

/* =========================================
   SOLUÇÕES ESPECIAIS (NICHOS)
   ========================================= */
.niche-section {
  padding: 90px 0;
  background-color: var(--bg-body);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card Base */
.niche-card {
  position: relative;
  padding: 36px 28px 28px;
  border-radius: 20px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Overlay de Gradiente Escuro + Imagem de Fundo por Card */
.card-cardapio {
  background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.70) 0%, rgba(15, 23, 42, 0.88) 100%),
                    url('../asset/img/soluction/1.svg');
}

.card-eventos {
  background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.70) 0%, rgba(15, 23, 42, 0.88) 100%),
                    url('../asset/img/soluction/2.svg');
}

.card-subadquirentes {
  background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.70) 0%, rgba(15, 23, 42, 0.88) 100%),
                    url('../asset/img/soluction/3.svg');
}

.niche-card h3 {
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}

.niche-card p {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.niche-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.niche-card li {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
  line-height: 1.4;
}

.niche-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1;
}

/* Botão Laranja Full Width */
.btn-card {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--primary);
  color: #ffffff !important;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}

.btn-card:hover {
  background-color: #e05300;
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 992px) {
  .niche-grid {
    grid-template-columns: 1fr;
  }

  .niche-card {
    min-height: auto;
  }
}

/* =========================================
   CONTATO
   ========================================= */
.contact-section {
  padding: 90px 0;
  background-color: var(--bg-light);
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  padding: 44px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 12px 30px var(--shadow-color);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600; /* Semi-bold */
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px;
  background-color: var(--bg-body);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--glow-effect);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background-color: #070a10;
  color: #94a3b8;
  padding: 48px 0;
  font-size: 0.9rem;
  border-top: 1px solid #1e293b;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* =========================================
   FOOTER (RODAPÉ)
   ========================================= */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-title {
  color: var(--primary, #ea580c);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-col p {
  color: #e2e8f0;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 4px;
}

.footer-col a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--primary, #ea580c);
}

/* Divisor horizontal */
.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

/* Barra inferior de direitos */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #94a3b8;
  font-size: 0.82rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background-color: var(--primary-dark);
}

/* =========================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================= */
@media (max-width: 768px) {
  html {
    font-size: 16px; /* Ajuste suave para telas menores */
  }

  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .mvv-cards, .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .nav-links {
    display: none;
  }

  .solution-card {
    transform: scale(1) !important;
    opacity: 1 !important;
    padding: 22px;
  }

  .service-image {
    height: 140px;
  }

  /* Garante que o container não ultrapasse a tela */
  .hero-container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  /* Reduz o título no celular para não cortar nas laterais */
  .hero-text h1 {
    font-size: 1.5rem; /* Ajuste entre 1.4rem e 1.7rem conforme seu layout */
    line-height: 1.25;
    word-break: break-word; /* Evita estouro de palavras longas */
  }

  /* Reduz levemente o texto descritivo */
  .hero-text p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

}


/* =========================================
   SEÇÃO UNIFICADA: NOSSAS SOLUÇÕES + QUEM SOMOS
   ========================================= */
.main-unified-section {
  position: relative;
  width: 100%;
  padding: 90px 0 100px;
  background-color: #11141a;
  /* Imagem de Fundo Dark Escovada/Gráfica abrangendo toda a seção */
  background-image: linear-gradient(180deg, rgba(15, 18, 25, 0.22) 0%, rgba(15, 18, 25, 0.94) 100%),
                    url('../asset/img/banner/bg_02.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Efeito parallax opcional */
  color: #ffffff;
}

/* Títulos da Seção Dark */
.section-title-light {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.section-title-light span {
  color: var(--primary);
}

.section-subtitle-light {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

/* =========================================
   NOSSAS SOLUÇÕES (CARDS TRANSLÚCIDOS & FIX SPLIDE)
   ========================================= */

.solutions-block {
  margin-bottom: 100px;
  position: relative;
}

/* 1. CORREÇÃO DE CORTE: Área de respiro vertical para o carrossel */
.solutions-splide .splide__track {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  margin-top: -20px;
  margin-bottom: -20px;
}

.solutions-splide .splide__list {
  display: flex;
  align-items: stretch; /* Iguala a altura de todos os cards no slide */
}

.solutions-splide .splide__slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
  padding: 0 4px; /* Evita corte nas bordas laterais */
}

/* 2. Estilo Base do Card Translúcido */
.solution-card {
  background: rgba(26, 32, 44, 0.65);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* 3. Card em Destaque (Borda Laranja / Glow) */
.solution-card-featured {
  border: 2px solid var(--primary, #ea580c) !important;
  box-shadow: 0 0 30px rgba(234, 88, 12, 0.25) !important;
  background: rgba(30, 37, 50, 0.8);
}

.solution-card-featured:hover {
  box-shadow: 0 0 35px rgba(234, 88, 12, 0.4) !important;
}

/* 4. Imagem do Card */
.solution-card-img {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #0b0e14;
}

.solution-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* 5. Conteúdo e Tipografia */
.solution-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-card-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.solution-card-content p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* 6. Tags de Recursos */
.solution-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.solution-tags .tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 20px;
}

/* 7. Botão do Card */
.btn-solucao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  color: #0f172a !important;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-solucao:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.btn-featured {
  background: var(--primary, #ea580c) !important;
  color: #ffffff !important;
}

.btn-featured:hover {
  background: #e05300 !important;
}

/* -----------------------------------------
   QUEM SOMOS (GRID DE CONTEÚDO)
   ----------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

/* Pilares (Missão, Visão, Valores) */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.pillar-card {
  background: rgba(20, 24, 33, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
}

.pillar-card h4 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

/* Bloco Horário de Atendimento */
.support-hours h5 {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.support-hours p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin-bottom: 4px;
}

.support-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* Imagem à Direita */
.about-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-media img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.5));
}

/* -----------------------------------------
   RESPONSIVIDADE (TABLETS E CELULARES)
   ----------------------------------------- */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .section-title-light {
    font-size: 2rem;
  }
}

/* =========================================
   SEÇÃO NOSSOS PARCEIROS (CARROSSEL AUTOMÁTICO)
   ========================================= */
.partners-section {
  background-color: #000000;
  padding: 48px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partners-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary, #ea580c);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

/* Container com efeito de suavização (Fade In / Fade Out) nas laterais */
.partners-ticker {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

/* Trilha de movimento infinito */
.partners-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: partnersScroll 22s linear infinite;
}

/* Pausa suave no hover (opcional) */
.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.partner-logo img {
  max-height: 38px;
  width: auto;
  object-fit: contain;
  /* Converte qualquer logo colorida ou preta para Branco Monocromático */
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* Animação CSS pura (sem depender de bibliotecas JS) */
@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .partners-section {
    padding: 36px 0;
  }

  .partners-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }

  .partners-track {
    gap: 40px;
    animation-duration: 16s;
  }

  .partner-logo img {
    max-height: 28px;
  }
}


/* =========================================
   BOTÃO DO HEADER (HOVER + RESPONSIVO MOBILE)
   ========================================= */

/* Estilo Base (Desktop / Tablet) */
.btn-header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary, #ea580c);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap; /* Impede a quebra de texto em várias linhas */
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

/* Efeito Hover (Desktop) */
.btn-header-contact:hover {
  background-color: #d94e07;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.4);
}

.btn-header-contact:active {
  transform: translateY(0);
}

.btn-header-contact .whatsapp-icon {
  flex-shrink: 0;
}

/* Regra Responsiva para Mobile */
@media (max-width: 768px) {
  /* Oculta o texto */
  .btn-header-contact .btn-text {
    display: none !important;
  }

  /* Transforma o botão em um ícone circular */
  .btn-header-contact {
    width: 42px;
    height: 42px;
    padding: 0 !important;
    border-radius: 50% !important; /* Formato circular */
    justify-content: center;
  }

  .btn-header-contact .whatsapp-icon {
    width: 20px;
    height: 20px;
  }
}

