@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    font-family: "Poppins", sans-serif;
}

/* NAV BAR */
nav {
    background-color: rgba(95, 150, 253, 0.527);
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 3rem;
    position: fixed;
    z-index: 10;
    width: 100%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.navbar.solida {
    background-color: rgb(80, 141, 253); 
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

.nome h2 {
    color: #f9f9f9;
    font-size: 1.6rem;
}

.menu a {
    text-decoration: none;
    color: #f9f9f9;
    font-size: 1.2rem;
    transition: 0.5s;
    padding: 0rem 1.5rem 0rem 0rem;
}

.menu a:hover {
    color: #ffad32;
}

/* Banner */
header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 2rem;
    color: #fff;
}

.titulo-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    margin-top: 14rem;
}

.titulo h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.subTitulo p {
    font-size: 1.2rem;
}

.content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(95, 150, 253, 0.082);
    padding: 0.5rem;         
    margin-top: auto;
}

.banner img {
    width: 100%;
    margin-top: 0.2rem;
    margin-left: 1.9rem;
    max-width: 500px;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.descricao {
    max-width: 600px;
    text-align: justify;
}

.descricao h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.descricao p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Serviços */
.content-servicos {
    margin-top: 4rem;
    width: 100%;
    min-height: 90vh;
    padding: 2rem;
    background-color: #fff;
}

.texto-img {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center;
    gap: 8rem;
    margin-top: 4rem;
    padding: 2rem;
    flex-wrap: nowrap;
}

.lista {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-wrap: wrap;
    max-width: 500px;
}

.lista li{
    list-style: none;
}

li::before {
    content: "\2713 ";
    margin-right: 0.8rem;
    color: rgb(95, 150, 253);
    font-weight: bold;
    font-size: 2rem;
}

.tit-servicos {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.tit-servicos hr {
    width: 20%;
    height: 4px;
    background-color: #ffad32;
    border: none;
    margin: 0 auto;
}

.trabalhando img {
    width: 100%;
    max-width: 600px;
}

.botao-a{
    margin-top: 2.5rem;
    text-align: center;
}
.botao-a a{
    text-decoration: none;
    color: #fff;
}

button{
    background-color: rgb(95, 150, 253);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    border-radius: 0.7rem;
    border: none;
    transition: 0.4s;
}

button:hover{
    background-color: #ffad32;
    cursor: pointer;
}

/* Principais Clientes */
section {
    margin: 2.5rem auto;
    padding: 6rem 3rem;
    min-height: 100vh;
    background: conic-gradient(rgb(136, 172, 240), rgb(68, 108, 182), rgb(136, 172, 240));
}

.principais h3{
    text-align: center;
    font-size: 2rem;
    color: #f9f9f9;
    padding-top: 4rem;
}

.principais hr{
    width: 23%;
    height: 4px;
    background-color: #ffad32;
    border: none;
    margin: 0 auto;
}

.clientes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 5rem;
    justify-content: center;
}

.foto {
    width: calc(20% - 1rem);
    border-radius: 0.3rem;
    box-shadow: 0 0.3rem 0.4rem 0.1rem #000000;
    border: solid 0.6rem white;
    background-color: #f9f9f9;
    text-align: center;
    margin: auto;
}

.foto img {
    width: 100%;
    display: block;
    padding-bottom: 1rem;
}

.foto a{
    text-decoration: none;
    color: #325deb;
    font-size: 1.5rem;
    text-decoration: bold;
    font-weight: 1000;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Contate-nos */
#contato {
    scroll-margin-top: 100px;
}

.tit-contato {
    text-align: center;
    margin-bottom: 1rem;
}

.titulo-principal {
    font-size: 2rem;
}

.tit-contato hr {
    width: 27%;
    height: 4px;
    background-color: #ffad32;
    border: none;
    margin: 0 auto;
}

.contato {
    width: 100%;
    margin: 2rem auto;
    padding: 2rem 3rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
}

.contato::before {
    content: "";
    position: absolute;
    top: 0rem; 
    left: 3.4rem;
    width: 60%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.493);
    z-index: 0;
    border-radius: 10px;
}

.contato > * {
    z-index: 2;
}

.formulario-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 60%;
}

.tit-sub-contato p {
    margin-bottom: 1rem;
    margin-left: 6rem;
}

form {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

form label,
form input {
    display: block;
}

form label {
    margin-bottom: 0.2rem;
    font-weight: bold;
}

form .esquerda,
form .direita {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

form .esquerda {
    width: 52%;
}

form .direita {
    width: 42%;
}

input[type="text"],
input[type="email"] {
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    border: none;
    width: 100%;
}

.msg {
    width: 100%;
    margin-top: 1rem;
}

.msg input {
    width: 100%;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    border: none;
}

.enviar {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-texto {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cont {
    width: 30%;
}

.cont img {
    width: 100%;
    height: auto;
    max-width: 550px;
}

form {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.coluna-esquerda,
.coluna-direita {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.coluna-esquerda {
    width: 50%;
}

.coluna-direita {
    width: 44%;
}

.cid input {
    width: 100%; 
    max-width: 27rem;
}

textarea {
    width: 430px;
    height: 174px;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    border: none;
    resize: vertical;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.msg label{
    width: 300px;
    padding-bottom: 1rem;
}

.enviar button {
    padding: 0.6rem 1.2rem;
    width: 30%;
    margin-left: 23rem;
    border: none;
    background-color: #ffad32;
    color: white;
    border-radius: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.enviar button:hover {
    background-color: #e0962b;
}

/* Rodapé */
footer {
    background-color: #c2c2c2;
    padding: 0.8rem 3rem;
    text-align: center;
}

footer h2 {
    font-size: 2rem;
}

.infos {
    display: flex;
    justify-content: space-evenly;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    font-size: 1.2rem;
    flex-wrap: wrap; 
    gap: 1.5rem;
}

footer p {
    color: #5a5a5a;
}

footer h4 {
    font-size: 1.4rem;
    padding-bottom: 0.5rem;
}

.contato-direto img {
    padding-right: 0.2rem;
    vertical-align: middle;
}

.zap {
    margin-bottom: 0.2rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .descricao {
        text-align: center;
        max-width: 90%;
    }

    .banner img {
        max-width: 70%;
        margin-left: 14%;
    }
}

@media (max-width: 768px) {
    .texto-img {
        flex-direction: column; 
        gap: 2rem;
        padding: 1rem;
    }

    .lista {
        font-size: 1.2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lista {
        font-size: 1rem;
    }

    .tit-servicos {
        font-size: 1.2rem;
    }

    .tit-servicos hr {
        width: 40%;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .menu {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .menu a {
        padding: 0;
        font-size: 1rem;
    }

    .titulo h1 {
        font-size: 2.2rem;
    }

    .subTitulo p {
        font-size: 1rem;
    }

    .descricao h2 {
        font-size: 1.3rem;
    }

    .descricao p {
        font-size: 0.95rem;
    }

    .foto {
        width: 90%;
    }
}

@media (max-width: 1024px) {
    .formulario-area {
      width: 100%;
    }
  
    form {
      flex-direction: column;
    }
  
    @media (max-width: 768px) {
        .coluna-esquerda,
        .coluna-direita {
            width: 100%;
        }
    
        .cid input,
        textarea {
            max-width: 100%;
        }
    }
  
    form .direita {
      margin-top: 1.5rem; 
    }
  
    .tit-sub-contato p {
      margin-left: 0;
      text-align: center;
    }
  
    .msg input,
    textarea {
      width: 100%;
    }
  
    .enviar button {
      width: 60%;
      margin: 0 auto;
    }
  
    .contato::before {
      left: 0;
      width: 100%;
      height: 87%;
      border-radius: 0;
    }
  
    .cont {
      width: 100%;
      max-width: 400px;
      margin: 3rem auto 0 auto; 
      z-index: 3;
    }
  
    .cont img {
      max-width: 0%;
    }
  }
  
  @media (max-width: 600px) {
    .titulo-principal {
      font-size: 1.4rem;
    }
  
    .enviar button {
      width: 100%;
    }
  
    .check-texto {
      flex-direction: column;
      align-items: flex-start;
    }
  }

/* Ícone hambúrguer */
.hamburguer {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburguer span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburguer {
        display: flex;
    }

    .menu {
        display: none;
    }

    .menu.active {
        display: flex;
    }
}

@media (min-width: 768px) {
    .form {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .form .esquerda {
        width: 52%;
    }

    .form .direita {
        width: 42%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .msg {
        width: 42%;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .titulo-sub {
      margin-top: 6rem;
    }
  
    .content {
      flex-direction: column;
      gap: 1.5rem;
      padding: 1rem;
      margin-bottom: 2rem; 
    }
  }

  @media (max-width: 768px) {
    .content-servicos {
      margin-top: 5rem; 
    }
  }

  @media (max-width: 768px) {
    .subTitulo {
      margin-bottom: 1.5rem;
    }
  
    .content {
      margin-bottom: 2rem;
      flex-direction: column;
      gap: 1.5rem;
      padding-bottom: 2rem;
    }
  
    .descricao {
      text-align: center;
      padding: 0 1rem;
    }
  

  }
  
  @media (max-width: 768px) {
    .titulo h1 {
        font-size: 1.6rem;
    }

    .subTitulo p {
        font-size: 0.7rem;
    }

    .titulo-sub {
        margin-top: 8rem;
        padding: 0 1rem;
    }

    header {
        padding: 1rem;
    }

    .descricao h2{
        font-size: 1.1rem;
    }

    .descricao p{
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .infos {
        flex-direction: column;
        align-items: center;
        font-size: 1rem;
    }

    footer h2 {
        font-size: 1.5rem;
    }

    footer h4 {
        font-size: 1.2rem;
    }

    footer p {
        font-size: 0.95rem;
    }

    .rodape {
        padding: 1rem 1rem;
    }
}
  


