/* @import url('https://fonts.googleapis.com/css2?family=Brutal+Milk+No+1&display=swap'); */
/* Importando a fonte BrutalMilkNo1 - Black */
@font-face {
    font-family: 'BrutalMilkNo1'; /* Nome da família da fonte */
    src: url('./fonts/BrutalMilkNo1-Black.woff') format('woff');
    font-weight: 900; /* Defina o peso correspondente (Black geralmente é 900) */
    font-style: normal;
  }

  /* Importando a fonte BrutalMilkNo1 - Bold */
  @font-face {
    font-family: 'BrutalMilkNo1';
    src: url('./fonts/BrutalMilkNo1-Bold.woff') format('woff');
    font-weight: 700; /* Defina o peso correspondente (Bold geralmente é 700) */
    font-style: normal;
  }

  /* Importando a fonte BrutalMilkNo1 - Extrabold */
  @font-face {
    font-family: 'BrutalMilkNo1';
    src: url('./fonts/BrutalMilkNo1-Extrabold.woff') format('woff');
    font-weight: 800; /* Defina o peso correspondente */
    font-style: normal;
  }

  /* Importando a fonte BrutalMilkNo1 - Extralight */
  @font-face {
    font-family: 'BrutalMilkNo1';
    src: url('./fonts/BrutalMilkNo1-Extralight.woff') format('woff');
    font-weight: 200; /* Defina o peso correspondente */
    font-style: normal;
  }

  /* Importando a fonte BrutalMilkNo1 - Light */
  @font-face {
    font-family: 'BrutalMilkNo1';
    src: url('./fonts/BrutalMilkNo1-Light.woff') format('woff');
    font-weight: 300; /* Defina o peso correspondente */
    font-style: normal;
  }

  /* Importando a fonte BrutalMilkNo1 - Medium */
  @font-face {
    font-family: 'BrutalMilkNo1';
    src: url('./fonts/BrutalMilkNo1-Medium.woff') format('woff');
    font-weight: 500; /* Defina o peso correspondente */
    font-style: normal;
  }

  /* Importando a fonte BrutalMilkNo1 - Regular */
  @font-face {
    font-family: 'BrutalMilkNo1';
    src: url('./fonts/BrutalMilkNo1-Regular.woff') format('woff');
    font-weight: 400; /* Peso padrão para Regular */
    font-style: normal;
  }

  /* Importando a fonte BrutalMilkNo1 - Semibold */
  @font-face {
    font-family: 'BrutalMilkNo1';
    src: url('./fonts/BrutalMilkNo1-Semibold.woff') format('woff');
    font-weight: 600; /* Defina o peso correspondente */
    font-style: normal;
  }

  /* Importando a fonte BrutalMilkNo1 - Thin */
  @font-face {
    font-family: 'BrutalMilkNo1';
    src: url('./fonts/BrutalMilkNo1-Thin.woff') format('woff');
    font-weight: 100; /* Defina o peso correspondente */
    font-style: normal;
  }


  body {
    font-family: 'BrutalMilkNo1', sans-serif; /* 'sans-serif' é um fallback */
    font-weight: 400; /* Usando a versão Regular */
  }

  h1 {
    font-family: 'BrutalMilkNo1', sans-serif;
    font-weight: 700; /* Usando a versão Bold */
  }
  .cardHeader {
    /* Estilos iniciais do seu cardHeader */
    background-color: #f0f0f0;
    padding: 15px;
    /* ... outros estilos ... */

    /* Estilos para o efeito de subir */
    transform: translateY(20px); /* Começa 20px abaixo */
    opacity: 0; /* Começa invisível */
    transition: transform 0.5s ease-out, opacity 0.5s ease-out; /* Transição suave */
  }

  body.loaded .cardHeader {
    transform: translateY(0); /* Move para a posição original */
    opacity: 1; /* Torna visível */
  }

.header {
    background: url('../img/bannerMTech1.png') no-repeat center center;
    background-size: cover;
    height: 137vh;
}
.navbar {
    background-color: rgba(15, 8, 39, 0.25);
    color: rgba(255, 255, 255, 1);
    border-radius: 30px;
    margin-top: 75px !important;
    padding: 16px 20px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
}
.navbar-nav .nav-link {
    color: white;
    font-size: 0.84rem;
    font-weight: bold;
}
/* .navbar-nav .nav-link.active {
    color: #DE5103;
    font-weight: bold;
} */
.navbar-nav .nav-link:hover {
    color: #DE5103 !important;
    font-weight: bold !important;
}
.navbar-toggler {
    background-color: rgba(15, 8, 39, 0.25);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    color: #DE5103;
}

.navbar-toggler-icon {
    background-color: rgba(222, 81, 3, 0.8); /* Define a cor de fundo */
    width: 30px; /* Largura do ícone */
    height: 3px; /* Altura de cada linha do hambúrguer */
    display: block;
    margin: 5px auto; /* Espaçamento entre as linhas */
    border-radius: 5px; /* Bordas arredondadas */
    transition: background-color 0.3s ease; /* Transição suave */
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    background-color: rgba(222, 81, 3, 0.8); /* Cor das linhas adicionais */
    width: 30px;
    height: 3px;
    display: block;
    position: absolute;
    left: 0;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px; /* Linha superior */
}

.navbar-toggler-icon::after {
    top: 8px; /* Linha inferior */
}

.navbar-nav {
    margin-right: 110px;
    gap: 20px !important;
}
/* .navbar-nav .nav-link:hover {
    color: #ccc;
} */
.service-item {
    opacity: 0; /* Inicialmente invisível */
    transform: translateY(-30px); /* Começa um pouco acima (negativo) */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Transição suave */
}

.service-item.apareceu {
    opacity: 1; /* Torna visível */
    transform: translateY(0); /* Move para a posição original */
}

#parceiros {
    opacity: 0; /* Inicialmente invisível */
    transform: translateX(-50px); /* Começa 50px à esquerda */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Transição suave */
}

#parceiros.apareceu {
    opacity: 1; /* Torna visível */
    transform: translateX(0); /* Move para a posição original */
}

.cardHeader h2 {
    margin-top: 10px;
    font-size: 36px;
    margin-bottom: 25px;
    color: rgba(71, 48, 239, 1);
    font-weight: bold;
    font-family: 'BrutalMilkNo1', sans-serif;

}
.cardHeader {
    background-color: rgba(255, 255, 255, 1); /* Fundo branco com transparência */
    border-radius: 20px;
    padding: 90px 80px;
    max-width: 900px; /* Largura máxima do card */
    margin: 0 auto; /* Centralizar o card */
    margin-top: -200px; /* Posicionar o card mais acima */
    margin-bottom: 80px;
}
.cardHeader p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1.5px;
    color: rgba(71, 48, 239, 1);
    width: 95%;
}

.grid-item {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.grid-item-historia, .grid-item-missao {
    padding: 20px;
    background-color: rgba(71, 48, 239, 1);
    color: white;
    flex: 1;
}
.grid-item-valores img, .grid-item-futuro img {
    width: 100%;
    height: auto;
    display: block;
    flex: 1;
}
.grid-item-title,
.grid-item-text {
    text-align: left;
    align-self: flex-start;
}
.grid-item-title {
    font-weight: bold;
    font-size: 1.22rem;
    margin: 0;
    text-align: left;
    margin-left: 60px; /* Define a margem da esquerda */
    margin-top: 30px;
    margin-bottom: 20px !important;
}

.grid-item-text {
    font-size: 0.95rem;
    line-height: 1.45;
    letter-spacing: 1.5px;
    text-align: left;
    margin-left: 60px; /* Mantém o alinhamento com o título */
    margin-right: 60px; /* Garante um respiro lateral */
}
.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}
/* @media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
} */
.row {
    display: flex;
    flex-wrap: wrap;
}
.col-md-6 {
    display: flex;
    flex: 1 0 50%;
    max-width: 50%;
    padding: 10px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}
.service-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 20px;
    display: flex; /* Habilita flexbox para alinhar ícone e texto */
    align-items: center; /* Alinha verticalmente o ícone e o texto */
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
    width: 1084px;
    height: 122px;
    margin-left: auto; /* Centraliza horizontalmente */
    margin-right: auto; /* Centraliza horizontalmente */
    position: relative;
    top: 50%; /* Posiciona verticalmente */
    transform: translateY(-50%); /* Ajusta para centralizar verticalmente */
}
.service-item .icon {
    margin-left: 50px;
    width: 80px; /* Ajuste a largura conforme necessário */
    display: flex;
    justify-content: center; /* Centraliza o ícone horizontalmente */
}
.service-item .icon img {
    max-height: 60px; /* Ajuste a altura máxima conforme necessário */
    max-width: 60px; /* Ajuste a largura máxima conforme necessário */
    display: block;
}
.service-item .text {
    margin-left: 50px;
    flex-grow: 1; /* Permite que o texto ocupe o espaço restante */
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}
.text p {
    color: grey;
    margin-bottom: 0;
    font-size: 16px;
}
.highlight {
    color: #000;
    font-weight: bold;
}
    .text h5 {
        color: rgba(71, 48, 239, 1);
    }

    .banner-1 {
        width: 100%;
        max-width: 1400px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        margin-top: 125px;

    }

    .banner-1 img {
        width: 115%;
        max-width: 1400px;
        height: 100%;
        object-fit: cover;
        border-radius: 30px!important;
    }
    .partner-container {
        margin-top: 30px;
    }
    .partner-card {
        border-radius: 10px;
        padding: 20px;
        margin: 20px auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Aumentei a intensidade da sombra */
        background-color: white;
        display: flex; /* Adicionado para centralizar a imagem */
        justify-content: center; /* Centraliza horizontalmente */
        align-items: center; /* Centraliza verticalmente */
        height: 190px; /* Altura fixa para todos os cards */
        width: 590px;
        margin-left: 90px;
    }
    .acronis-img {
        width: 80%; /* Ajuste específico para essa imagem */
        max-width: 380px;
    }

    .microsoft-img {
        width: 100%;
        max-width: 450px;
    }

    .sonicwall-img {
        width: 100%;
        max-width: 300px;
    }

    .kaspersky-img {
        width: 85%;
        max-width: 210px;
    }
    .section-title {
        font-weight: 700;
        font-size: 1.7rem;
        margin-bottom: 12px;
        color: rgba(71, 48, 239, 1);
        text-align: left;
        margin-top: 100px;
        margin-left: 100px!important;
    }
    .descricao-svc{
        font-weight: 500;
        font-size: 1.0rem;
        margin-bottom: 40px;
        color: rgb(117, 117, 117);
        text-align: left;
        margin-left: 100px;
        letter-spacing: 1.5px;
    }

    .title-2 {
        font-weight: bold;
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: rgba(71, 48, 239, 1);
        text-align: left;
        margin-top: 85px;
    }
    .section-description {
        font-size: 1.30rem;
        color: rgba(71, 48, 239, 1);
        margin-bottom: 10px;
        letter-spacing: 1.5px
    }
    .section-description {
        font-size: 1.30rem;
        color: rgba(71, 48, 239, 1);
        margin-bottom: 10px;
        letter-spacing: 1.5px;
        margin-left: 110px;
        text-align: left;
    }

    .descricao-parceiros {
    font-size: 1.0rem;
    color: rgb(117, 117, 117);
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    /* max-width: 900px; */
    }


    .section-title.title-2,
    .descricao-parceiros {
        margin-left: 100px;
    }

    .section-title{
      text-align: left;
      margin-left: 50px;
      max-width: 800px;
    }

    @media (max-width: 768px) {
        .section-title {
            margin-left: 20px;
            margin-right: 20px;
        }
    }
    .card-custom {
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .card-img-top {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        object-fit: cover;
        height: 200px; /* Ajuste a altura conforme necessário */
    }

    .card-text {
        font-size: 1rem;
        color: rgba(71, 48, 239, 1);
        letter-spacing: 1.5px;
    }
    .footer {
    background-image: url('../img/rodape.png'); /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0;
    position: relative;
    }

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alinha os itens ao topo */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    width: 50%; /* Largura menor para a coluna da esquerda */
    text-align: left; /* Alinha o texto à esquerda */
    letter-spacing: 1.5px;
    font-weight: bold;
}
.footer-right {
    width: 50%; /* Largura maior para a coluna da direita */
    text-align: left; /* Alinha o texto à esquerda */
    letter-spacing: 1.5px;
}
.footer-left {
    margin-left: 40px;
}
.footer-right {
    margin-left: 55px;
}

.footer-right h2 {
    margin-bottom: 120px!important;
}

.footer h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 3.5px;
}

.footer p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-left p {
    margin-bottom: 10px;
    font-size: 1.8rem;
    line-height: 1.6;
}

.footer-left strong {
    font-weight: 600; /* Destaca os textos importantes */
}

.btn-primary {
    background-color: #007bff; /* Cor do botão */
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.botao {
    min-width: 240px;
    width: auto;
    max-width: 100%;
    text-align: center;
    font-size: 1.75rem;
    letter-spacing: 1.5px;
    font-weight: bold;
    padding: 8px 6px;
}
.btn-primary:hover {
    background-color: #0056b3; /* Cor do botão ao passar o mouse */
}

.social-icons {
    margin-top: 20px;
}

.social-icons img {
    width: 30px;
    margin-right: 10px; /* Espaçamento entre os ícones */
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1); /* Efeito de zoom ao passar o mouse */
}

.title-footer h2 {
    color: white;
    margin-bottom: 120px;
}
.title-footer-2 {
    margin-top: 200px;
}



    .highlight {
        color:rgba(71, 48, 239, 1);
        font-weight: bold;
        margin-right: 1px;
    }
    .social-title {
        font-size: 1.2rem;
        color: white;
        margin-bottom: 15px;
        text-align: left;
        letter-spacing: 1.2px;
    }

    img#imagemMobile  {
        display: none;

    }

    /* REORGANIZAR MOBILE */

    @media (max-width: 768px) {
        .header {
            background: none;
            /* background-size: contain; */
            height: 300px;
        }
        img#imagemMobile {
            display: block;
            width: 110%;
            height: auto;

            padding: 0px;
        }

        #sobre {
            background-color:rgba(71, 48, 239, 1) ;
        }

        .descricao-svc {
            font-size: 0.9rem;
            margin-left: 20px;
            margin-bottom: -100px;
        }


        .cardHeader h2 {
            margin-top: 10px;
            font-size: 28px;
            margin-bottom: 25px;
            color: rgba(71, 48, 239, 1);
            font-weight: bold;
            font-family: 'BrutalMilkNo1', sans-serif;

        }

        .grid-item {
            box-shadow: none; /* Remove a sombra */

        }
        .grid-item-historia, .grid-item-missao {
            padding: 20px;
            background-color: rgba(71, 48, 239, 1);
            color: white;
            flex: 1;
            margin-left: 0px;
        }
        .grid-item-text {
            font-size: 0.9rem;
            line-height: 1.45;
            letter-spacing: 1.5px;
            text-align: left;
            margin-left: 20px; /* Mantém o alinhamento com o título */
            margin-right: 20px; /* Garante um respiro lateral */
        }
        .grid-item-title {
            font-weight: bold;
            font-size: 1.2rem;
            margin: 0;
            text-align: left;
            margin-left: 20px; /* Define a margem da esquerda */
            margin-top: 30px;
            margin-bottom: 20px !important;
        }

        .navbar {
            margin-top: 20px !important;
            padding: 10px 10px;

        }


        .service-item {
            max-width: 100%;
            padding: 20px;

            height: auto;
        }

        .service-item .icon img {
            width: 60px;
            height: 60px;
            margin-right: 20px;
            margin-left: 10px;
        }

        .text h5 {
            font-size: 1rem;
        }

        .service-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .service-item .icon {
            margin-right: 0;
            margin-bottom: 30px;
            width: auto;
        }

        .service-item .icon img {
            height: auto;
            width: 87px;

        }

        .service-item .text {
            text-align: left;
            padding: 10px;
            margin-left: 0;
        }
        .banner-1 img {
            border-radius: 10px!important;
        }

        .social-title {
            text-align: left;
        }

        .col-md-6 {
            flex: 1 0 100%;
            max-width: 100%;
        }

        .footer {
            display: none; /* Esconde o footer original */
            padding: 40px 20px; /* Ajusta o padding para o mobile */
            text-align: center; /* Centraliza o texto no mobile */
        }

    .footer-content {
        flex-direction: column; /* Alinha os itens em coluna no mobile */
        text-align: left; /* Alinha todo o conteúdo à esquerda */
        margin: 0; /* Remove margens extras */
        padding: 30px; /* Remove padding extra */
    }

    .footer-left, .footer-right {
        width: 100%; /* Ocupa toda a largura no mobile */
        margin: 0; /* Remove margens extras */
        padding: 0; /* Remove padding extra */
        margin-bottom: 0px;
    }

    .footer-left p, .footer-right p, .footer-right h2 {
        margin: 0; /* Remove margens entre os textos */
        padding: 5px 0; /* Adiciona espaçamento mínimo */
        margin-bottom: 0px; /* Remove margens entre os textos */
    }


    .footer-left button {
        margin-top: 10px; /* Espaçamento entre o botão e o texto */
    }

    .social-icons {
        margin-top: 10px; /* Espaçamento entre os ícones e o texto */
    }

        .section-title.title-2,
        .descricao-parceiros {
            margin-left: 20px;
        }

        .descricao-parceiros {
            font-size: 0.9rem;
            margin-left: 20px;
        }
        .section-description {
            margin-left: 20px;
        }

        .section-title,
        .descricao-svc {
            margin-left: 20px !important; /* Reduz margem para não "grudar" na borda */
            margin-right: 20px; /* Garante um respiro lateral */
            text-align: center; /* Centraliza se fizer sentido no layout */
        }

        .footer-left p {
            margin-bottom: 0px;
            font-size: 1.8rem;
            line-height: 1.6;
        }
        .title-footer-2 {
            margin-top: 0px;
        }
        .footer-right {
            margin-bottom: 0px;
            padding-bottom: 0px;
        }


            .partner-card {
                width: 90%;
                height: 125px;
                margin-left: 5%;

            }
            .partner-card img{
                margin: 0 auto;
                width: 60%;
                padding: 10px;
                /* height: auto; */

            }
            .navbar-nav.mobile-clicked {
                background-color: rgba(15, 8, 39, 0.75);
                border-radius: 30px;
                padding: 16px 20px;
                box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
                margin-top: 15px !important;
                max-width: 970px;
                margin-left: auto;
                margin-right: auto;
                margin-top: 20px;
            }
            .navbar-nav.mobile-clicked .nav-item .nav-link {
                color: white; /* Opcional: mudar a cor do texto também */
                border-radius: 5px; /* Opcional: adicionar bordas arredondadas */
                transition: background-color 0.3s ease; /* Opcional: adicionar uma transição suave */
                text-align: center;
                position: relative; /* Necessário para a pseudo-classe */
                border-bottom: #ccc solid 1px;
                width: 70%;
                margin: 0 auto;
            }

            .cardHeader {
                background-color: rgba(255, 255, 255, 1); /* Fundo branco com transparência */
                border-radius: 20px;
                padding: 10px 10px;
                max-width: 319px; /* Largura máxima do card */
                margin: 0 auto; /* Centralizar o card */
                margin-top: -80px; /* Posicionar o card mais acima */
                margin-bottom: 80px;
            }

            .cardHeader p {
                font-weight: 500;
                font-size: 14px;
                line-height: 1.5;
                letter-spacing: 1.5px;
                color: rgba(71, 48, 239, 1);
                width: 95%;
            }

    }



    .footer-mobile {
        display: none; /* Oculta por padrão */
        background-image: url('../img/rodape.png'); /* Substitua pelo caminho da sua imagem */
        background-size: cover;
        background-position: center; /* Exemplo de cor de fundo */
        color: #ffffff; /* Exemplo de cor do texto */
        padding: 20px;
        text-align: left;
        letter-spacing: 2px;
    }

    .footer-mobile-content {
        margin-bottom: 20px;
        padding: 15px 0;
        /* border-bottom: 1px solid #eee; */
    }

    .footer-mobile-content:last-child {
        border-bottom: none;
    }

    .footer-mobile-title {
        font-size: 20px;
        line-height: 1.4;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .footer-mobile-paragraph {
        font-size: 20px;
        line-height: 1.6;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    /* .footer-mobile-button {
        display: inline-block;
        margin-top: 35px;
        font-size: 1em;
        padding: 10px 20px;
        border-radius: 25px;
        background-color: #007bff;
        color: white;
        text-decoration: none;

    } */

    .footer-mobile-contact-info strong {
        display: block;
        margin-bottom: 5px;
    }

    .footer-mobile-social {
        margin-top: 20px;
    }

    .footer-mobile-social-title {
        font-size: 1em;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .footer-mobile-social-icons {
        display: flex;
        justify-content: left;
        gap: 15px;
    }

    .footer-mobile-social-icons img {
        width: 30px;
        height: 30px;
    }

    .footer-mobile-copyright {
        margin-top: 20px;
        font-size: 0.8em;
        color: #ffffff;
    }

    /* Media query para exibir apenas em dispositivos móveis */
    @media (max-width: 768px) {
        .footer-mobile {
            display: block;
        }
    }
