:root {
  --brand-dark:  #00072e;
  --brand-neon:  #00aaff;
  --brand-cta:   #00aaff;
  --brand-cta-h: #005fa3;
}

/* Botões */
.default-btn,
.btn,
.btn-primary {
  background: var(--brand-cta);
  border-color: var(--brand-cta);
  color: #fff;
}
.default-btn:hover,
.btn:hover,
.btn-primary:hover {
  background: var(--brand-cta-h);
  border-color: var(--brand-cta-h);
}

/* Esconde seção de equipe */
.section-team { 
  display: none !important; 
}

/* Barra de progresso no estilo da marca */
.progress-bar {
  background: linear-gradient(90deg, var(--brand-cta) 0%, var(--brand-neon) 100%);
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--brand-neon) !important;
}
.default-btn,
.btn,
.btn-primary {
  background: var(--brand-cta);
  border-color: var(--brand-cta);
  color: #fff;
}
.default-btn:hover,
.btn:hover,
.btn-primary:hover {
  background: var(--brand-cta-h);
  border-color: var(--brand-cta-h);
}
.section-title h2,
h2.section-title {
  color: var(--brand-dark);
  border-left: 4px solid var(--brand-neon);
  padding-left: 10px;
}
i, .bx, .flaticon {
  color: var(--brand-neon);
}

a:hover {
  color: var(--brand-neon);
}
.progress-bar,
.bg-gradient {
  background: linear-gradient(90deg, var(--brand-cta) 0%, var(--brand-neon) 100%) !important;
}
/* Letras dos blocos de features */
.single-features h3,
.single-features i {
  color: var(--brand-neon) !important; /* azul neon */
}
.single-features p {
  color: #fff; /* texto normal branco */
}
/* Aplica filtro azul em qualquer imagem de shape */
[class*="shape"] img {
  filter: hue-rotate(240deg) saturate(200%) brightness(90%);
}
/* Só os blocos dentro da seção "security-area" */
.security-area .single-security {
  background-color: #e6f4ff !important;
  color: #000 !important;
}
/* Versão clara (azul pastel) */
.single-security.custom-light,
.single-features.custom-light,
.featured-box.custom-light,
.service-card.custom-light,
.contact-box.custom-light {
  background-color: #e6f4ff !important; /* azul claro */
  color: #000 !important;
}
.single-security.custom-light h3,
.single-features.custom-light h3,
.featured-box.custom-light h3,
.service-card.custom-light h3,
.contact-box.custom-light h3 {
  color: #000 !important;
}

/* Versão escura (azul brand) */
.single-security.custom-dark,
.single-features.custom-dark,
.featured-box.custom-dark,
.service-card.custom-dark,
.contact-box.custom-dark {
  background-color: #00072e !important; /* azul escuro */
  color: #fff !important;
}
.single-security.custom-dark h3,
.single-features.custom-dark h3,
.featured-box.custom-dark h3,
.service-card.custom-dark h3,
.contact-box.custom-dark h3 {
  color: #00aaff !important; /* título azul vibrante */
}


.security-area .single-security h3,
.security-area .single-security p {
  color: #000 !important;
}
/* Ocultar todas as variações da seção de time */
.section-team,
.team-area,
.team-section {
  display: none !important;
}
/* Padronizar altura dos cards em .features-area */
.features-area .single-features {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
/* Ocultar todas as variações da seção de time */
.section-team,
.team-area,
.team-section {
  display: none !important;
}

/* Padronizar altura dos cards em .features-area */
.features-area .single-features {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Container da imagem de transformação */
.transform-img {
  position: relative;
  width: 640px;
  height: 460px;
  overflow: hidden; /* evita que a imagem "escape" */
}

/* As imagens dentro do container */
.transform-img .theme-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* mantém proporção sem cortar */
  transition: opacity 0.5s ease-in-out;
}

/* Estado inicial: só mostra a versão clara */
.theme-img.dark {
  opacity: 0;
}
html.theme-dark .theme-img.dark {
  opacity: 1;
}
html.theme-dark .theme-img.light {
  opacity: 0;
}

/* Imagens empilhadas (light/dark) */
.theme-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;   /* ocupa o container */
  height: 100%;  /* ocupa o container */
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

/* Estado inicial: só mostra light */
.theme-img.dark {
  opacity: 0;
}

/* Quando tema escuro ativo */
html.theme-dark .theme-img.dark {
  opacity: 1;
}

html.theme-dark .theme-img.light {
  opacity: 0;
}
/* Container da imagem de transformação */
.transform-img {
  position: relative;
  width: 100%;
  max-width: 640px;   /* largura máxima */
  aspect-ratio: 640 / 460; /* mantém proporção sem precisar de height fixa */
  margin: 0 auto;
  overflow: hidden;   /* corta excesso */
}

/* Imagens empilhadas */
.theme-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

/* Estado inicial */
.theme-img.dark {
  opacity: 0;
}

html.theme-dark .theme-img.dark {
  opacity: 1;
}

html.theme-dark .theme-img.light {
  opacity: 0;
}
/* Forçar hover azul nos títulos no modo dark */
html.theme-dark .single-features h3,
html.theme-dark .single-features h3 a {
  color: var(--brand-neon) !important;
  transition: color 0.3s ease;
}

html.theme-dark .single-features:hover h3,
html.theme-dark .single-features:hover h3 a {
  color: var(--brand-cta) !important;
}
/* Substituir todos os elementos que usam o vermelho padrão no dark theme */
.theme-dark,
.theme-light {
  --brand-replace: #00aaff; /* azul que você escolheu */
}

/* Reposicionar o botão de tema no lado direito */
.switch-box {
  position: fixed !important;
  top: 25%;                 /* posição relativa à tela */
  right: 20px;
  transform: translateY(-50%); /* centraliza corretamente */
  z-index: 9999;
}

/* Padronizar altura dos cards, mas menor */
.single-security {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* container da imagem */
.transform-img {
  display: flex;
  align-items: center;     /* centraliza verticalmente */
  justify-content: flex-start; /* gruda no lado esquerdo */
  height: 100%;
}

/* imagens */
.theme-img {
  max-width: 100%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
  display: block;
  margin-top: 20px;    /* ajuste vertical */
  margin-left: -60px;  /* move mais para a esquerda */
}

/* estado inicial */
.theme-img.dark {
  opacity: 0;
}

html.theme-dark .theme-img.dark {
  opacity: 1;
}

html.theme-dark .theme-img.light {
  opacity: 0;
}
/* Ocultar a seção Manual Area */
.manual-area {
  display: none !important;
}
/* Ocultar a seção Manual Area */
.manual-area {
  display: none !important;
}

/* Ocultar a seção Cybersecurity Area */
.cybersecurity-area {
  display: none !important;
}
.header-logo img,
.header-logo a:focus,
.header-logo a:active {
  outline: none !important;
  box-shadow: none !important;
}
/* Ocultar seção Latest News From Blog */
.blog-area {
    display: none !important;
}
.cybersecurity-img {
  background-image: url(../../assets/img/cybersecurity-img.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain; /* mostra a imagem inteira */
  height: 800px;            /* ajusta a altura conforme seu layout */
}
/* Custom para Terms & Conditions */
.terms-conditions-area .single-privacy ul li {
  margin-bottom: 20px;   /* espaçamento entre itens */
  line-height: 1.8;      /* deixa mais "respirado" */
}

.terms-conditions-area .single-privacy ul li strong {
  display: block;        /* força o título a quebrar linha */
  font-size: 18px;       /* destaque maior pro título */
  color: #2bedfe;        /* usa o azul neon do seu site */
  margin-bottom: 5px;    /* espaço abaixo do título */
}
/* Custom para Blocos no Services */
.single-security {
  min-height: 260px; /* Ajuste o valor até todas ficarem iguais */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}





























