
:root,
[data-bs-theme=light] {
  --bs-primary: #303333;
    
}


.about__v4 .mission-statement {
  background-color: var(--bs-primary);
  position: relative;
  bottom: -20px;
  width: 100%;
}
.about__v4 .mission-statement h3 {
  font-size: 10px;
  color: var(--bs-secondary);
}
.about__v4 .mission-statement p {
  color: var(--bs-white);
}
.about__v4 .mission-icon {
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  line-height: 50px;
  display: inline-block;
  background-color: rgba(var(--bs-secondary-rgb), 0.1);
}
.about__v4 .mission-icon i {
  color: var(--bs-secondary);
}
/* ===========================
   Estilo da Galeria
   =========================== */
.gallery-block {
  padding-bottom: 60px;
  padding-top: 60px;
}

.gallery-block .heading {
  margin-bottom: 50px;
  text-align: center;
}

.gallery-block .heading h2 {
  font-weight: bold;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.gallery-block.cards-gallery h6 {
  font-size: 17px;
  font-weight: bold;
}

.gallery-block.cards-gallery .card {
  margin-bottom: 30px;
  transition: 0.4s ease;
  box-shadow: none !important; /* neutraliza sombra padrão */
}

.gallery-block.cards-gallery .card img {
  height: 220px !important; /* altura uniforme */
  object-fit: contain !important;
  padding: 12px;
  transition: transform 0.3s ease;
}

.gallery-block.cards-gallery .card img:hover {
  transform: scale(1.05);
}

.gallery-block.cards-gallery .card-body {
  text-align: center;
}

.gallery-block.cards-gallery .card-body p {
  font-size: 15px;
}

.gallery-block.cards-gallery a {
  color: #212529;
}

.gallery-block.cards-gallery a:hover {
  text-decoration: none;
}

@media (min-width: 576px) {
  .gallery-block .transform-on-hover:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important;
  }
}
/* ===========================
   Cards Premium de Vitrine
   =========================== */
.gallery-block.cards-gallery .card.card-sistema {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}

/* Efeito de brilho suave */
.gallery-block.cards-gallery .card.card-sistema::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-block.cards-gallery .card.card-sistema:hover::before {
  opacity: 1;
}

.gallery-block.cards-gallery .card.card-sistema:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--cor-conecto);
}

/* Imagens proporcionais */
.gallery-block.cards-gallery .card.card-sistema img {
  height: 220px;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.3s ease;
}

.gallery-block.cards-gallery .card.card-sistema img:hover {
  transform: scale(1.05);
}

/* Tipografia */
.card-sistema h6 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
}

.card-sistema p {
  font-size: 0.95rem;
  color: #555;
}

/* Botão de ação com gradiente animado */
.card-sistema .btn-card {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  border-radius: 20px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: #fff;
  font-weight: 600;
  transition: background-position 0.4s ease;
  background-size: 200% 100%;
  background-position: left center;
}

.card-sistema .btn-card:hover {
  background-position: right center;
}

/* Paleta de cores */
:root {
  --cor-teorema: #0f172a;
  --cor-conecto: #0d6efd;
}

/* Estilo Geral da Seção */
.secao-sistemas {
  background-color: #f8fafc;
  position: relative;
}

/* Efeito Glow extraordinário ao fundo */
.glow-bg-1, .glow-bg-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
  pointer-events: none;
}
.glow-bg-1 { top: -10%; left:5%; background: var(--cor-conecto); }
.glow-bg-2 { bottom: -10%; right: 5%; background: var(--cor-teorema); }

/* Badges estilizadas */
.bg-soft-primary {
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--cor-conecto);
}

/* Container do Ícone */
.icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-teorema { background-color: var(--cor-teorema); }
.bg-conecto { background-color: var(--cor-conecto); }



/* Linha de conexão do meio */
.connection-line {
  position: absolute;
  width: 2px;
  height: 80%;
  background: linear-gradient(to bottom, var(--cor-teorema), var(--cor-conecto));
  opacity: 0.2;
}
.connection-badge {
  width: 50px;
  height: 50px;
  z-index: 2;
  border: 2px solid #f1f5f9 !important;
}

/* Customização dos Botões */
.btn-teorema-outline {
  color: var(--cor-teorema);
  border: 2px solid var(--cor-teorema);
  border-radius: 12px;
  transition: all 0.2s;
}
.btn-teorema-outline:hover {
  background-color: var(--cor-teorema);
  color: white;
}

.btn-conecto {
  background-color: var(--cor-conecto);
  color: white;
  border-radius: 12px;
  transition: all 0.2s;
}
.btn-conecto:hover {
  background-color: #0b5ed7;
  box-shadow: 0 8px 16px rgba(13, 110, 253, 0.25);
}

/* Utilidades adicionais */
.z-index-1 { z-index: 1; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-tight { letter-spacing: -0.02em; }

/* Definição exata das cores da sua marca */
:root {
  --marca-preto-profundo: #121214; /* Fundo principal dark */
  --marca-preto-card: #1a1a1e;     /* Fundo dos mini-cards de contato */
  --marca-vermelho: #e50914;       /* Tom de vermelho vibrante para ação */
  --marca-vermelho-hover: #b80710; /* Vermelho mais escuro para o efeito do botão */
}

/* 1. Transição drástica de fundo (Corta a mesmice do fundo anterior) */
.secao-contato-dark {
    background-color: var(--marca-preto-profundo) !important;
}

/* Texto mutado para leitura confortável no fundo escuro */
.text-mutado {
    color: #94a3b8;
}

/* Pequena etiqueta de "Fale Conosco" */
.bg-badge-vermelho {
    background-color: rgba(229, 9, 20, 0.15);
    color: #ff4d56;
}

/* Ícones e mini cards do lado esquerdo */
.contato-info-dark {
    background-color: var(--marca-preto-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.bg-icone-dark {
    background-color: rgba(255, 255, 255, 0.05);
}
.text-vermelho {
    color: var(--marca-vermelho);
}

/* 2. O Card do Formulário (Mantido em Branco para dar o máximo destaque de leitura) */
.card-formulario-dark {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Inputs do Formulário */
.card-formulario-dark .form-control,
.card-formulario-dark .form-select {
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 10px !important;
}

/* Foco do input na cor da sua marca (Vermelho) */
.card-formulario-dark .form-control:focus,
.card-formulario-dark .form-select:focus {
    border-color: var(--marca-vermelho) !important;
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.15) !important;
}

/* 3. Botão Vermelho de Alta Conversão */
.btn-vermelho-submit {
    background-color: var(--marca-vermelho) !important;
    border: none;
    border-radius: 10px !important;
    transition: all 0.2s ease-in-out;
}

.btn-vermelho-submit:hover {
    background-color: var(--marca-vermelho-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3) !important;
}

/* Definições de Cores da Seção Mapa */
:root {
  --vermelho-marca: #e50914;       /* O mesmo vermelho do seu botão do formulário */
  --preto-titulos: #1a1d20;        /* Tom escuro para contraste no fundo branco */
  --cinza-fundo-suave: #f8fafc;    /* Fundo suave para separar o mapa do formulário */
}

/* Fundo da seção para quebrar o tom escuro do formulário */
.secao-mapa-clean {
    background-color: var(--cinza-fundo-suave) !important;
}

/* Títulos da seção */
.text-preto-marca {
    color: var(--preto-titulos) !important;
}

/* Badge de Categoria */
.bg-badge-vermelho-clean {
    background-color: rgba(229, 9, 20, 0.1);
    color: var(--vermelho-marca);
}

/* Ícone do marcador */
.bg-vermelho-marca {
    background-color: var(--vermelho-marca) !important;
}

/* Caixa principal que une o endereço e o mapa */
.box-mapa-container-clean {
    border-radius: 20px;
    border-color: #e2e8f0 !important;
    background-color: #ffffff;
}

/* Bloco interno cinza onde o endereço fica escrito */
.bloco-endereco-clean {
    background-color: var(--cinza-fundo-suave);
    border: 1px solid #e2e8f0;
}

/* Ajuste fino do mapa para não estourar as cores na versão clara */
.mapa-google-clean {
    filter: grayscale(10%) contrast(98%);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.mapa-google-clean:hover {
    filter: grayscale(0%) contrast(100%);
    opacity: 1;
}
/* =========================
   FOOTER BASE
========================= */
.bg-footer-marca {
    background:
        linear-gradient(
            180deg,
            #15171b 0%,
            #0f1013 50%,
            #090909 100%
        );
    
    position: relative;
    overflow: hidden;
}

/* Glow vermelho discreto */
.bg-footer-marca::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: rgba(229, 9, 20, 0.08);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

/* Linha superior elegante */
.bg-footer-marca::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(229, 9, 20, 0.5),
        transparent
    );
}

/* Garantir conteúdo acima do glow */
.bg-footer-marca .container {
    position: relative;
    z-index: 2;
}

/* =========================
   COPYRIGHT
========================= */
.copyright-footer {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* =========================
   TEXTOS
========================= */
.text-light-50 {
    color: #94a3b8 !important;
    line-height: 1.8;
}

.text-vermelho-marca {
    color: #e50914 !important;
}

/* =========================
   TÍTULOS
========================= */
.barra-titulo-footer {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 28px !important;
    font-size: 20px;
    letter-spacing: 0.5px;
}

/* Linha elegante */
.barra-titulo-footer::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        #e50914,
        #ff4d57
    );
}

/* =========================
   COLUNAS
========================= */
.footer .col-lg-3 {
    transition: all 0.3s ease;
}

/* efeito leve ao passar */
.footer .col-lg-3:hover {
    transform: translateY(-4px);
}

/* =========================
   LINKS
========================= */
.btn-link-footer {
    display: inline-block;
    margin-bottom: 14px;
    color: #94a3b8;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

/* Linha animada */
.btn-link-footer::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #e50914;
    transition: width 0.3s ease;
}

.btn-link-footer:hover {
    color: #ffffff;
    transform: translateX(6px);
}

.btn-link-footer:hover::after {
    width: 100%;
}

/* =========================
   REDES SOCIAIS
========================= */
.btn-outline-rede {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    color: #94a3b8;
    background: rgba(255,255,255,0.02);
    
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.btn-outline-rede:hover {
    background: linear-gradient(
        135deg,
        #e50914,
        #ff3b45
    );
    
    border-color: transparent;
    color: #fff;

    transform: translateY(-5px);
    box-shadow:
        0 10px 25px rgba(229, 9, 20, 0.3);
}

/* =========================
   INPUT NEWSLETTER
========================= */
.input-footer {
    height: 56px;

    background: rgba(255,255,255,0.03) !important;

    border: 1px solid rgba(255,255,255,0.08) !important;

    color: #fff !important;

    border-radius: 14px !important;

    transition: all 0.3s ease;
}

.input-footer::placeholder {
    color: #94a3b8;
}

.input-footer:focus {
    border-color: rgba(229, 9, 20, 0.6) !important;

    box-shadow:
        0 0 0 4px rgba(229, 9, 20, 0.08) !important;

    background: rgba(255,255,255,0.05) !important;
}

/* =========================
   BOTÃO VERMELHO
========================= */
.btn-vermelho-marca {
    background: linear-gradient(135deg,#e50914,#ff3b45) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 10px;
    transition: all 0.3s ease;}

.btn-vermelho-marca:hover {
    transform: translateY(-2px);
    box-shadow:0 10px 20px rgba(229, 9, 20, 0.35);
}

/* =========================
   BOTÃO BACK TO TOP
========================= */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 96px;
    width: 52px;
    height: 52px;
    border-radius: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:0 10px 25px rgba(229, 9, 20, 0.35);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {

    .barra-titulo-footer {
        margin-top: 20px;
    }

    .footer .col-lg-3:hover {
        transform: none;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}
 .footer {
            font-family: 'Inter', sans-serif;
        }
        .icon{
            width: 100px;
        }
        .logo{
            width: 200px;
        }
        .Topbar{
            background-color: #333333;
        }
        .btn-whatsapp{
            display: inline-flex;
            align-items: center;
            gap: 10px;

            background: #d61c1c;
            color: #fff;

            padding: 14px 22px;
            border-radius: 8px;

            font-size: 16px;
            font-weight: 500;
            font-family: Arial, sans-serif;

            text-decoration: none;

            transition: 0.3s ease;
        }

        .btn-whatsapp:hover{
            background: #b81616;
            transform: translateY(-2px);
            color: #fff;

        }

        .btn-whatsapp i{
            font-size: 22px;
        }
        .footer .col-lg-3 {
            padding: 28px;
            border-radius: 20px;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.04);
        }
        .footer .col-lg-3:hover {
            background: rgba(255,255,255,0.04);
            border-color: rgba(229, 9, 20, 0.2);
        }
		
		@media (max-width:768px){

    .back-to-top{
        right:20px;
        bottom:100px;
    }

}