@charset "UTF-8";

* {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(245, 245, 245);
    overflow-x: hidden;
}

/*--------- header ---------*/
  
header {
position: fixed;
top: 0;
width: 100vw;
height: 100px;
background-color: rgba(0, 0, 0, 0);
color: white;
transition: background-color 0.3s ease, transform 0.3s ease;
z-index: 999;
overflow-y: hidden;
}

    #logo-header {
        width: 200px;
        margin-top: 15px;
        margin-left: 40px;
        opacity: 0%;
        transition: 0.3s;
    }

    #logo-header.visible {
        opacity: 100%;
    }

    .hamburger-menu {
        width: 30px;
        height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        position: absolute;
        right: 2%;
        margin-top: 25px;
        cursor: pointer;
    }

    .hamburger-menu span {
        height: 4px;
        width: 100%;
        background-color: #fff; /* Altere a cor conforme necessário */
        border-radius: 2px;
        transition: all 0.3s ease;
    }
  
    header.visible {
    background-color: rgb(26, 26, 26);
    }

.container-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    margin-right: 30px;
    width: 50vw;
    max-width: 500px;
    float: right;
    position: relative;
    z-index: 100;
}

.item-nav {
    color: rgb(255, 255, 255);
    padding: 8px 0px;
    flex: 1; /* cada box vai ocupar espaço igual */
    text-align: center;
    border: 1px solid white;
    border-radius: 30px;
    transition: 0.5s;
    cursor: pointer;
}

.item-nav:hover {
    background-color: white;
    color: black;
}

.menu-nav p {
    cursor: pointer;
}

@media(max-width: 768px) {
    
        header {
            overflow: visible;
        }

        #logo-header {
            width: 150px;
            margin-left: 10px;
            position: absolute;
        }

        .container-nav {
            margin-top: 0px;
            margin-right: 0px;
            width: 100%;
            max-width: 100vw;
            flex-direction: column;
            background-color: rgb(26, 26, 26);
            transition: 0.3s;
            opacity: 0%;
            gap: 0px;
        }

            #container-nav-header.visible {
                visibility: visible;
                opacity: 100%;
            }

            #container-nav-header {
                margin-top: 100px;
                visibility: hidden;
            }

            #container-nav-main {
                visibility: hidden;
            }

        .item-nav {
            border-radius: 0px;
            border-left: none;
            border-right: none;
            padding: 10px 0px;
        }

    }

/*--------- main ---------*/



main {

}

#main-banner {
    width: 100vw;
    height: 100vh;
    max-height: 1100px;
    background-color: rgb(37, 37, 37);
    background-position: center;
    background-size: cover;
    overflow-x: hidden;
    background-image: url(../img/banner-main.png);
    background-attachment: fixed;
    position: relative;
}



    #container-info-main {
        top: 25%;
        margin-left: 7%;
        border: 1px solid rgba(255, 255, 255, 0);
        position: absolute;
    }

        .desc-titulo {
            color: rgb(223, 223, 223);
        }

        #container-info-main p {
            margin-left: 1vw;
            font-size: clamp(16px, 1.5vw, 50px);
        }

        #img-logo-main {
            width: 50vw;
            max-width: 1000px;
            min-width: 350px;
        }

        #btn-saiba-mais {
            margin-top: 2vw;
            width: 15vw;
            min-width: 150px;
            height: 6vw;
            min-height: 50px;
            border: 0.2vw solid rgb(255, 255, 255);
            border-radius: 50px;
            cursor: pointer;
            margin-left: 0.5vw;
            transition: 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #link-saiba-mais {
            all: unset;
            cursor: pointer;
            width: 0;
            display: inline-block;
        }

        #link-ler-mais {
            all: unset;
            cursor: pointer;
        }

        .link-nav {
            text-decoration: none;
            color: white;
            flex: 1;
        }


        #btn-saiba-mais:hover {
            padding: 0.5vw;
            margin-left: 0vw;
            margin-top: 1.5vw;
            background-color: white;
        }

        #btn-saiba-mais p {
            color: white;
            text-align: center;
            font-size: clamp(18px, 1.5vw, 1.5vw);
            transition: 0.2s;
            text-decoration: none;
            font-weight: bold;
        }

        #btn-saiba-mais:hover p {
            color: rgb(66, 66, 66);
        }


@media(max-width: 768px) {
        
        #main-banner {
            height: 50vh;
        }

           #btn-saiba-mais {
            transform: translateY(20px);
            margin-bottom: 25px;
           }

    }











#main-content {
    width: 100vw;
    min-height: 400px;
    margin: 0px auto;
    background-color: rgb(241, 241, 241);
    overflow-x: hidden;
}

    #container-quem-somos {
        width: 100vw;
        max-width: 1920px;
        min-height: 400px;
        margin: 0px auto;
        display: flex;
    }

        .box-main-content {
            width: 75vw;
            max-width: 1400px;
            margin: 0px auto;
        }

            #tag-sobre-nos {
                width: 100px;
                height: 25px;
                border-radius: 20px;
                background-color: rgb(43, 43, 43);
                color: white;
                margin-bottom: 10px;
                margin-top: 100px;
            }

                #tag-sobre-nos p {
                    text-align: center;
                    margin-top: 4px;
                    font-size: 12px;
                    letter-spacing: 2px;
                }

            #box-tittle-sobre {
                display: block;
                width: 80%;
            }

                #tittle-sobre-nos {
                    font-size: clamp(6px, 4vw, 60px);
                    max-width: 900px;
                }

            #box-text-sobre {
                display: block;
                margin-top: 50px;
                line-height: 30px;
                margin-bottom: 50px;
            }

                #text-sobre-nos {
                    font-size: clamp(12px, 3vw, 30px);
                    font-weight: lighter;
                    line-height: 35px;
                    overflow-y: hidden;
                    text-align: justify;
                }


@media (max-width: 1400px) {

    .box-main-content {
        width: 90vw;
    }

        #box-tittle-sobre {
            width: 100%;
        }

        #tittle-sobre-nos {
            font-size: clamp(45px, 6vw, 40px);
        }



}
        

@media (max-width: 768px) {


    #text-sobre-nos {
        line-height: normal;
        font-size: clamp(20px, 4.5vw, 40px);
    }

}




#section-historia {
    width: 100vw;
    height: 450px;
    background-color: rgb(241, 241, 241);
}

    

    .container-hist {
        width: 75vw;
        max-width: 1400px;
        min-height: 350px;
        margin: 0px auto ;
        margin-top: 50px;
        border-radius: 30px;
        background-color: #303030;
        transition: 0.2s;
        background-image: url(../img/back-historia-2.jpg);
        background-size: cover;
        background-position: 1% 45%;
        position: relative;
    }

        #tittle-hist {
            color: rgb(255, 255, 255);
            margin-top: 50px;
            margin-left: 3%;
            font-size: clamp(12px, 7vw, 50px);
            font-family: "Roboto", sans-serif;
            max-width: 90%;
            text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.205);
            display: inline-block;
        }

        #btn-hist {
            width: 15%;
            min-width: 120px;
            height: 4vw;
            min-height: 50px;
            max-height: 70px;
            right: 0;
            margin-right: 4%;
            bottom: 0;
            margin-bottom: 40px;
            border-radius: 60px;
            transition: 0.2s;
            border: 3px solid white;
            background-position: bottom;
            cursor: pointer;
            position: absolute;
        }

        #btn-hist:hover {
            padding: 5px;
            transform: translateX(5px);
            margin-bottom: 35px;
            box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.336);
            background-color: white;
        }

            #btn-hist p {
                text-align: center;
                font-weight: bold;
                font-size: clamp(19px, 2vw, 30px);
                color: #ffffff;
                margin-top: 13px;
                text-shadow: 0px 0px 5px rgb(0, 0, 0);
                transition: 0.2s;
            }

            #btn-hist:hover p {
                color: rgb(65, 65, 65);
                font-size: clamp(21px, 2vw, 30px);
                text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.164);
            }

@media (max-width:768px) {

    .container-hist {
        width: 95vw;
    }

}







.services {
      padding: 80px 20px;
      background-color: #ffffff;
      text-align: center;
    }

    .services h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
    }

    .service-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 30px;
    }

    .service-box {
      background-color: #eeeeee;
      border-radius: 12px;
      padding: 30px;
      width: 300px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }

    .service-box:hover {
      transform: translateY(-5px);
    }

    .service-box h3 {
      margin-bottom: 10px;
      font-size: 1.3rem;
    }

    .service-box p {
      color: #555;
    }










#section-clientes {
    width: 100vw;
    min-height: 100px;
    overflow: hidden;
    background-color: rgb(241, 241, 241);
}

    #section-clientes * {
        font-family: "Cal Sans", sans-serif;
        color: rgb(0, 0, 0);
    }

    #tittle-clientes {
        color: rgb(0, 0, 0);
        text-align: center;
        margin-top: 50px;
        letter-spacing: 3px;
    }

    .carousel-container {
        width: 70%;
        max-width: 960px;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
        margin-top: 30px;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.4s ease-in-out;
        overflow-x: visible;
    }

    .carousel-item {
        flex: 0 0 calc(100% / 3);
        padding: 10px;
        box-sizing: border-box;
    }

    .carousel-item > div {
        background-color: #ffffff;
        color: white;
        border-radius: 12px;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .carousel-buttons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 80%;
        max-width: 1300px;
        margin: 0px auto;
        margin-top: -100px;
        margin-bottom: 80px;
    }

    .btns-car {
        height: 30px;
        width: 30px;
        border: none;
        border-radius: 50%;
        background: #ffffff;
        color: #fff;
        cursor: pointer;
        margin: 0;
    }

    .carousel-buttons button:hover {
        background: #d8d8d8;
        color: black;
    }

    .carousel-item div {
        background-position: center;
        background-size: cover;
    }

    #secretaria-educacao-sp {
        background-image: url(../img/clientes/logo-secretaria-da-educacao-sp.png);
        background-size: 80%;
        background-repeat: no-repeat;
    }

    #multisul {
        background-image: url(../img/clientes/logo-multisul.jpeg);
        background-size: 60%;
        background-repeat: no-repeat;
    }

    #defensoria-publica-sp {
        background-image: url(../img/clientes/defensoria-publica-sp.jpg);
    }

    #secretaria-saude-sp {
        background-image: url(../img/clientes/logo-secretaria-da-saude-sp.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-color: white;
    }

    #lang-mekra {
        background-image: url(../img/clientes/lang-mekra.jpg);
        background-size: auto;
        background-repeat: no-repeat;
    }

    #rts {
        background-image: url(../img/clientes/RTS\ INFORMATICA.jpg);
        background-size: auto;
        background-repeat: no-repeat;
    }

    

    .btn-mais-clientes {
        color: rgb(0, 0, 0);
    }

        #link-mais-clientes {
            text-decoration: none;
            color: white;
            display: flex;
            justify-content: center;
            background-color: white;
            width: 300px;
            height: 40px;
            margin: 0px auto;
            margin-bottom: 100px;
            border-radius: 30px;
            transition: 0.4s;
        }

            #mais-clientes p {
                margin-top: 10px;
                font-size: 1em;
                transition: 0.4s;
            }

        #link-mais-clientes:hover {
            background-color: rgb(0, 0, 0);
        }

        #link-mais-clientes:hover p {
            color: rgb(255, 255, 255);
        }



@media (max-width: 768px) {
        .carousel-track {
          grid-template-columns: repeat(6, 100%);
        }
      
        .carousel-item {
            flex: 0 0 100%; /* 1 item em telas pequenas */
          }

        .carousel-container {
            width: 70%;
            max-width: 400px;
        }

        #section-clientes {
            min-height: 100px;
        }
        
        .carousel-buttons {
            width: 93%;
        }

        #link-mais-clientes {
            width: 250px;
        }
        
         
      }





.cta {
      background-color: #000000;
      color: #ffffff;
      text-align: center;
      padding: 80px 20px;
    }

    .cta h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .cta p {
      color: #d1d5db;
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .cta a {
      border: 2px solid white;
      color: #ffffff;
      padding: 14px 30px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 50px;
      transition: 0.3s;
    }

    .cta a:hover {
      background-color: #ffffff;
      border: 2px solid white;
      color: black;
      box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.295);
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.4rem;
      }

      .about h2,
      .services h2,
      .cta h2 {
        font-size: 2rem;
      }

      .service-box {
        width: 100%;
        max-width: 90%;
      }
    }


            

/*--------- footer ---------*/


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

.site-footer {
  background-color: #1a1a1a; /* Preto suave */
  color: #cccccc;            /* Cinza claro */
  font-family: 'Inter', sans-serif;
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center; /* Alinha verticalmente logo e texto */
  gap: 1rem;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
  font-size: 0.95rem;
}

.footer-nav a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-logo {
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Deixa a logo branca, se for escura */
}