:root {
    --primary: #0b4dbd;
    --primary-dark: #083c95;
    --primary-20: rgba(11, 77, 189, 0.2);
    --text-dark: #1f2a37;
}
.titulo-contato {
  font-size: 2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 20px;
  position: relative;
}

.titulo-contato::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #0d6efd; /* azul simples */
  margin-top: 8px;
  border-radius: 2px;
}

/* ================================ BASE ================================ */
body {
    color: var(--text-dark);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

/* ================================ NAVBAR ================================ */
.navbar-brand .logo-symbol {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

.nav-link {
    font-weight: 500;
}

#mainNav {
    height: 70px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
}

/* Remove borda do hamburguer */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ================================ HEADER FULLSCREEN + SLIDESHOW ================================ */
#hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #0b4dbd;
}

/* Fundo com slides */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 18s infinite;
}

.hero-bg-slider .slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-bg-slider .slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-bg-slider .slide:nth-child(3) {
    animation-delay: 12s;
}

/* Animação */
@keyframes slideShow {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Overlay escuro */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Conteúdo por cima */
#hero .container {
    z-index: 2;
    position: relative;
}

/* Card lateral */
.hero-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.hero-card hr {
    opacity: 0.1;
}

.sobre{
  background-origin: padding-box;
}


/*********** sobre ****/ 
#sobre{
    background: linear-gradient(180deg, #ffffff, #083c95);
    
  }


/* ================================ SERVIÇOS ================================ */
.service-card .service-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: var(--primary-20);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

/* ================================ ESTATÍSTICAS ================================ */
.stat-card {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 16px;
}

.stat-value {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
}

.stat-label {
    color: #6b7280;
}

/* ================================ DEPOIMENTOS ================================ */
.testimonial {
    border: 1px solid #eef2f7;
}

/* ================================ FOOTER ================================ */
/* .footer .logo-symbol {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
} */
 .footer-tech {
    background: linear-gradient(180deg, #0a0f1f, #05070e);
    padding: 80px 0 30px;
    color: white;
}

.footer-tech .logo-symbol {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0b4dbd, #0a3a8f);
    color: white;
    border-radius: 12px;
    font-weight: bold;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(11,77,189,0.5);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0b4dbd;
    padding-left: 6px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #0b4dbd, #0a3a8f);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(11,77,189,0.5);
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 40px 0 20px;
}


/* ================================ BOTÕES PRINCIPAIS ================================ */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ================================ BOTÃO "SAIBA MAIS" ================================ */
.botao-saiba-mais {
    background: #0d6efd;
    color: #fff;
    padding: 8px 22px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    margin-left: 0;
    transition: background 0.25s ease, transform 0.2s ease;
}

.botao-saiba-mais:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

/* ================================ ACESSIBILIDADE ================================ */
:focus-visible {
    outline: 3px solid var(--primary-20);
    outline-offset: 2px;
}

/* ================================ RESPONSIVO GLOBAL ================================ */

/* HERO */
@media (max-width: 768px) {
    #hero {
        height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-card {
        margin-top: 20px;
    }
}

/* SERVIÇOS */
@media (max-width: 768px) {
    .service-card {
        text-align: center;
    }
}

/* ESTATÍSTICAS */
@media (max-width: 768px) {
    .stat-card {
        margin-bottom: 20px;
        text-align: center;
    }
}

/* DEPOIMENTOS */
@media (max-width: 768px) {
    .testimonial {
        margin-bottom: 20px;
    }
}

/* FOOTER */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
}

/* ================================ NAVBAR FIXO ================================ */
#mainNav {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    height: 70px;
    padding: 0 20px;
}

/* Logo grande no desktop */
.navbar-brand img {
    height: auto;
    width: auto;
    max-height: 200px;
    object-fit: contain;
}

/* Ícone hamburguer */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ================================ NAVBAR RESPONSIVO ================================ */

/* Telas até 992px — tablet */
@media (max-width: 992px) {

    /* Logo média */
    .navbar-brand img {
        max-height: 100px;
    }

    /* Fundo branco só quando o menu está aberto */
    #navContent.collapse:not(.show) {
        background: transparent !important;
        padding: 0 !important;
    }

    #navContent.collapse.show {
        background: #fff;
        padding: 15px 0;
    }

    /* Links centralizados */
    .navbar-nav .nav-link {
        text-align: center;
        padding: 10px 0;
    }

    /* Botão dentro do menu */
    .btn.btn-primary.ms-lg-3 {
        margin: 15px auto 0;
        display: block;
        width: fit-content;
    }

    /* Ajusta padding do nav */
    #mainNav {
        padding: 6px 12px;
        height: auto;
    }
}

/* Telas até 480px — celular */
@media (max-width: 480px) {

    /* Logo pequena */
    .navbar-brand img {
        max-height: 55px;
    }

    #mainNav {
        padding: 4px 12px;
        height: auto;
    }

    /* Ícone menor */
    .navbar-toggler {
        padding: 2px 6px;
    }

    .navbar-toggler-icon {
        width: 18px;
        height: 18px;
    }

    /* Links compactos */
    .navbar-nav .nav-link {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    /* Botão menor */
    .btn.btn-primary.ms-lg-3 {
        font-size: 0.85rem;
        padding: 5px 14px;
    }

    /* Área do menu */
    #navContent {
        padding: 8px 0;
    }

    /* Mantém tudo dentro do nav */
    #mainNav .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        overflow: hidden;
    }
}

/****************************SITE PERSONALIZADO******************/

/* ============================================================
   HERO (TEXT ONLY)
============================================================ */
.sec-sites-hero--text-only {
  background: linear-gradient(135deg, #083c95, #083c95);
  padding: 160px 0 140px;
  text-align: center;
  color: white;
}

.sec-sites-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.sec-sites-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.sec-sites-hero-title span {
  color: #ffffff;
}

.sec-sites-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.sec-sites-hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 45px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  opacity: 0.9;
}

.highlight-item i {
  font-size: 1.8rem;
  color: #ffffff;
}

.sec-sites-hero-btn {
  display: inline-block;
  background: #ffffff;
  color: #003bff;
  padding: 16px 34px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.2s ease;
}

.sec-sites-hero-btn:hover {
  background: #e6e6e6;
  transform: translateY(-4px);
}

/* Responsividade HERO */
@media (max-width: 991px) {
  .sec-sites-hero-title {
    font-size: 2.4rem;
  }
  .sec-sites-hero-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sec-sites-hero-title {
    font-size: 2rem;
  }
  .sec-sites-hero-subtitle {
    font-size: 1.1rem;
  }
  .sec-sites-hero-highlights {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   DIVISOR ENTRE SEÇÕES
============================================================ */
.sec-sites-divider {
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, #001a66, #003bff);
}

/* ============================================================
   SHOWCASE
============================================================ */
.sec-sites-showcase {
  background: linear-gradient(135deg, #001a66, #001a66);
  padding: 100px 0;
  color: white;
}

.sec-sites-mockups {
  position: relative;
  width: 100%;
  min-height: 380px;
}

.sec-sites-mockup {
  position: absolute;
  transition: 0.3s ease;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.25));
}

.sec-sites-mockup-desktop {
  width: 85%;
  top: 0;
  left: 0;
  z-index: 1;
}

.sec-sites-mockup-tablet {
  width: 55%;
  bottom: 0;
  right: 10%;
  z-index: 2;
  transform: rotate(-3deg);
}

.sec-sites-mockup-mobile {
  width: 30%;
  bottom: -10px;
  left: 60%;
  z-index: 3;
  transform: rotate(4deg);
}

.sec-sites-mockup:hover {
  transform: scale(1.05);
}

/* Benefícios */
.sec-sites-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.sec-sites-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

/* Responsividade SHOWCASE */
@media (max-width: 991px) {
  .sec-sites-mockups {
    min-height: 300px;
  }
  .sec-sites-mockup-desktop {
    width: 100%;
  }
  .sec-sites-mockup-tablet {
    width: 60%;
    right: 0;
  }
  .sec-sites-mockup-mobile {
    width: 35%;
    right: 5%;
    left: auto;
  }
}

@media (max-width: 768px) {
  .sec-sites-mockups {
    min-height: 250px;
  }
  .sec-sites-mockup-tablet {
    display: none;
  }
  .sec-sites-mockup-mobile {
    width: 40%;
    right: 0;
  }
  .sec-sites-benefits {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   DIFERENCIAIS
============================================================ */
.sec-sites-diferenciais {
  background: #f5f7ff;
  padding: 80px 0;
}

.sec-sites-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #d0d8ff;
  padding: 30px;
  transition: 0.25s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sec-sites-card:hover {
  transform: translateY(-6px);
  border-color: #003bff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ============================================================
   TECNOLOGIAS
============================================================ */
.sec-sites-tools {
  background: #f5f7ff;
  padding: 80px 0;
}

.sec-sites-tool-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #b8c9ff;
  transition: 0.25s ease;
}

.sec-sites-tool-card:hover {
  transform: translateY(-6px);
  border-color: #003bff;
}

/* ============================================================
   PROCESSO
============================================================ */
.sec-sites-processo {
  background: #ffffff;
  padding: 80px 0;
}

.sec-sites-step {
  background: #003bff;
  border-radius: 14px;
  padding: 25px;
  border: 1px solid #99b3ff;
  transition: 0.25s ease;
  color: white;
}

.sec-sites-step:hover {
  transform: translateY(-6px);
  background: #002fcc;
}

.sec-sites-step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

/* ============================================================
   CTA FINAL
============================================================ */
.sec-sites-cta {
  background: linear-gradient(135deg, #003bff, #001a66);
  text-align: center;
  padding: 80px 0;
  color: white;
}

/******** VIDEO DAO HEADER ************/
.video-box {
    width: 260px;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 132, 255, 0.25);
}

.video-tech {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsivo */
@media (max-width: 768px) {
    ul.list-unstyled {
        flex-direction: column;
        text-align: center;
    }

    .video-box {
        margin-top: 20px;
        width: 100%;
    }
}
/***** imagens do serviçoes ****/
.service-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.botao-saiba-mais {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: #0d6efd;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.botao-saiba-mais:hover {
    background: #0b5ed7;
    transform: scale(1.05);
}
/****** separador ***************/
 .tech-separator {
    position: relative;
    width: 100%;
    height: 250px;
    background: radial-gradient(circle at top, #083c95, #000);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#techCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tech-separator-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 20px;
}

.tech-separator-content h2 {
    font-weight: 700;
    font-size: 2.3rem;
}

.tech-separator-content p {
    color: #9cc9ff;
    margin-top: 10px;
}
   

/******/
.tech-line-separator {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
}

.tech-line-separator span {
    position: relative;
    width: 70%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #1e90ff,
        #00c6ff,
        #1e90ff,
        transparent
    );
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.6);
}

/* Pontos tecnológicos */
.tech-line-separator span::before,
.tech-line-separator span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #00c6ff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 12px rgba(0, 198, 255, 0.9);
}

.tech-line-separator span::before {
    left: 20%;
}

.tech-line-separator span::after {
    right: 20%;
}

/*** separador dos cases ****/ 
.vision-to-results {
    width: 100%;
    height: 130px;
    /* background: linear-gradient(180deg, #f8f9fa, #e9ecef); */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Linha central */
.vtr-track {
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #adb5bd, #0d6efd, #00c6ff);
    border-radius: 10px;
}

/* Pontos */
.vtr-nodes {
    position: absolute;
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vtr-nodes span {
    background: #0d6efd;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 0 15px rgba(13,110,253,0.5);
    position: relative;
}

/* Hastes conectando */
.vtr-nodes span::after {
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    width: 2px;
    height: 25px;
    background: #0d6efd;
    transform: translateX(-50%);
    opacity: 0.6;
}

/* =========================
   SEÇÃO METODOLOGIA
========================= */
#metodologia {
    background: linear-gradient(180deg, #f8f9fc, #eef2f8);
    position: relative;
    overflow: hidden;
}

/* Efeito de fundo tecnológico suave */
#metodologia::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(11,77,189,0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.05), transparent 50%);
    z-index: 0;
}

#metodologia .container {
    position: relative;
    z-index: 2;
}

/* Cards */
#metodologia .card {
    border-radius: 16px;
    transition: all 0.4s ease;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
}

/* Efeito hover premium */
#metodologia .card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(11,77,189,0.15);
}

/* Ícones */
#metodologia .service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #083c95, #083c95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: white;
    box-shadow: 0 10px 30px rgba(11,77,189,0.35);
}

/* Títulos dos cards */
#metodologia h3 {
    margin-top: 15px;
    letter-spacing: 0.4px;
}

/* Linha do processo */
#metodologia .fs-3 {
    background: linear-gradient(90deg, #083c95, #083c95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Botão CTA */
#metodologia .btn-primary {
    background: linear-gradient(135deg, #0b4dbd, #111);
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(11,77,189,0.4);
    transition: all 0.3s ease;
}

#metodologia .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(11,77,189,0.6);
}

/* Texto pequeno de processos */
#metodologia .small {
    letter-spacing: 0.4px;
}

/* Responsivo */
@media (max-width: 768px) {
    #metodologia .fs-3 {
        font-size: 1.3rem !important;
        text-align: center;
    }
}
