*{
    font-family: Arial, Helvetica, sans-serif;
}
a{
    color: blue;
}
body{
    width: 100%;
    position: absolute;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    box-sizing: border-box;
    margin: 0;
    background-image: url(imagens/fundo-site.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
h1{
    text-align: center;
}
main{
    margin-bottom: 100px;
}
header{
    width: 100%;
    background-color: #1e293bef;
    color: white
}
footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #1e293bef;
    color: white;
    text-align: center;
}
#header-info{
    display: flex; justify-content: center; flex-wrap: wrap; gap: 5px; margin: 0 auto; padding: 20px;     transition: opacity 0.5s; 
}
#header-info-info{
    color: rgb(0, 0, 0);
    padding: 20px; border-radius: 8px; background-color:#9e9e9ec5; box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.527);
    transition: 0.2s;
}
#header-info-info:hover{
    filter: brightness(1.1);
    transition: 0.2s;
}
#img-perfil{
    width: auto;
    height: 260px; 
    display: block; 
    margin: 0 auto; 
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.527);
}
.menu{
    margin: 0;
    padding: 7px;
    padding-left: 10px;
    color: white;
    display: flex;
    gap: 25px;
    background-color: #1E293B;
    align-items: center;
    flex-wrap: wrap;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
}
.menu a{
    color: white;
    font-weight: bold;
    font-size: large;
    text-decoration: none;
}
.menu a:hover{
    filter: brightness(1.3);
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.534);
}
.menu-pc{
    margin: 0;
    padding: 7px;
    padding-left: 10px;
    color: white;
    display: flex;
    gap: 25px;
    background-color: #1E293B;
    align-items: center;
    flex-wrap: wrap;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
}
.menu-mobile{
    gap: 25px;
    justify-content: center; /* Deixa tudo no centro horizontalmente */
}
.menu-mobile-button{
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.527);
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: large;
    background-color: #9e9e9e;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111111f8;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1000;
    text-align: left;
  }
  
  .menu-overlay.ativo {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  /* Links com animação */
  .menu-overlay a {
    opacity: 0;
    text-align: left;
    transform: translateY(10px);
    color: white;
    text-decoration: none;
    font-size: 24px;
    margin: 15px 0;
    animation: aparecer 0.5s forwards;
  }
  
  /* Delays personalizados */
  .menu-overlay.ativo a:nth-of-type(1) { animation-delay: 0.3s; }
  .menu-overlay.ativo a:nth-of-type(2) { animation-delay: 0.5s; }
  .menu-overlay.ativo a:nth-of-type(3) { animation-delay: 0.7s; }
  
  @keyframes aparecer {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
.menu-mobile-close{
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.527);
    padding: 10px;
    border: solid rgba(255, 255, 255, 0.473);
    border-radius: 50%;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    background-color: #303030;
}

.projetos{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px;
}

.projeto{
    padding: 20px;
    width: 305px;
    background-color: white;
    word-break: break-word;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    font-family: Arial, sans-serif; 
    position: relative;
}
.projeto h2{
    font-weight: bold;
    margin: 0;
    padding: 0;
}
.projeto h2 a{
    color: black;
    text-decoration: none;
}

.projeto p{
    font-size: large;
}

.projeto img{
    width: 150px;
    height: auto;
    margin: 0 auto;
}

.button-visitar{
    position: absolute;
    width: 100px;
    bottom: 10px;
    left: 10px;
    text-align: center;
    background-color: #1E293B;
    color: white;
    cursor: pointer;
    padding: 5px;
    height: 30px;
    border-radius: 4px;
    border: none;
    transition: 0.2s;
}
.button-visitar:hover{
    filter: brightness(1.5);
    transition: 0.2s;
}

.enviar{
    width: 100px;
    text-align: center;
    background-color: #1E293B;
    color: white;
    cursor: pointer;
    padding: 5px;
    height: 30px;
    border-radius: 4px;
    border: none;  
}

.formulario{
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    box-sizing: border-box;
    margin: auto;
    width: 100%;
    margin-bottom: 115px;
    background-color: rgba(255, 255, 255, 0.89);
}
.formulario h2,a{
    font-weight: bold;
}
.formulario p{
    font-size: large;
    text-align: left;
}
.formulario label{
    font-size: large;
}
textarea {
    height: 150px;
    padding: 10px;
    font-size: 16px; 
    border: 2px solid #ccc; 
    border-radius: 5px; 
    resize: vertical; 
    box-sizing: border-box; 
    background-color: #f9f9f9; 
    color: #333; 
    outline: none;
    transition: border-color 0.3s ease; 
}

textarea:focus {
    border-color: #007bff; 
    background-color: #fff; 
}
input[type="text"]{
    font-size: 16px; 
    border: 2px solid #ccc; 
    border-radius: 5px; 
    box-sizing: border-box; 
    background-color: #f9f9f9; 
    color: #333; 
    outline: none;
    transition: border-color 0.3s ease; 
}
input[type="text"]:focus{
    border-color: #007bff; 
    background-color: #fff; 
}
input[type="range"] {
    width: 150px; 
}
.star {
    font-size: 40px;
    color: #ffe600;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.692);
}
#rangeValue {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    padding-left: 10px;
}
.container {
    background-color: transparent;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden; /* Esconde a parte da imagem que sai do limite da div */
}

.descricao{
    padding: 25px;

}

.logos {
    display: flex;
    animation: scrollRight 15s linear infinite;
}

.logos img {
    height: 40px; /* Ajuste o tamanho das logomarcas */
    margin-right: 300px; /* Espaço entre as logomarcas */
}
input[type = "checkbox"]{
    width: 15px;
    height: 15px;
    cursor: pointer;
}
@keyframes scrollRight {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@media (max-width: 1539px) {
    .menu-pc {
        display: none !important;
    }
    .menu-mobile {
        display: flex !important;
    }
    textarea{
        width: 200px;
    }
    .descricao{
        padding-left: 20px;
        padding-right: 20px;
    }

}

/* Menu padrão exibido em telas maiores ou iguais a 1550px */
@media (min-width: 1540px) {
    .menu-pc {
        display: flex !important;
    }
    .menu-mobile,.menu-mobile-hidden {
        display: none !important;
    }
    textarea{
        width: 400px;
    }
    .descricao{
        padding-left: 500px;
        padding-right: 500px;
    }
}
/*
Branco: #FFFFFF

Cinza médio: #CBD5E1

Cinza escuro: #1E293B

Azul marinho: #0F172A

Verde: #10B981


*/
.button-info{
    position: absolute;
    padding: 7px;
    left: 0;
    margin: 3px;
    cursor: pointer;
    background-color: #1E293B;;
    color: white;
    border: none;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.527);
    border: solid 1px black;
    border-radius: 5px;
    transition: opacity 0.5s; 
}