@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    font-family: "Poppins", serif;
    list-style: none; /* Remove os marcadores da lista */
}

body {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.principal {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #056771, #fff);
    z-index: 1;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: transparent;
    border-bottom: 3px solid #ffdf00;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 2;
}

.logo img {
    width: 40%;
    background-color: transparent;
}

nav {
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-right: 2%;
    width: 45%;

}

.menu-horizontal {
    display: flex; /* Coloca os itens na horizontal */
    align-items: center;
    justify-content: center;
}
  
.menu-horizontal li {
    height: 50px;
    width: 130px;
    font-size: 15px;
}
  
.menu-horizontal a {
    color: #fff; /* Define a cor do texto */
    padding: 10px; /* Adiciona um espaçamento interno nos links */
}
  
.menu-horizontal a:hover {
    border-radius: 10px;
    background: linear-gradient(to bottom, #056771, #051953);    
    color: #fcf806; /* Define a cor do texto */
    height: 50px;
    width: 130px;
    font-size: 15px;

}

.home-section {
    display: flex;
    padding: 30px;
}
.img-home img {
    width: 50vw;
    height: 80vh;
    border-radius: 0 45%  ;
    object-fit: cover;
}

.texto-home p {
    font-size: 16px;
    text-align: justify;
}

main {
    padding: 0 20px;
    margin-top: 10px;
    height: 85.5%;
}

main p {
    font-size: 20px;
    font-weight: 600;
    color: #000;

}

footer {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #051953;
    z-index: 3;
}

.portfolio-section h1 {
    font-size: 26px;
    text-align: center;
}

.portfolio-item {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.portfolio-item img {
    border: 1px solid #ffdf00;
    background-color: #fff;
    width: 650px;
    height: 350px;
}

.portfolio-item p {
    text-align: justify;
    font-size: 14px;
    margin-top: 10px;
}

.portfolio-item {
    display: none;
}
 
.portfolio-item.active {
    display: block;
    margin-top: 50px;

}

@keyframes slideInPortifolio {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
      }
}

.portfolio-item.active {
    animation: slideInPortifolio 1s ease-out forwards; 
}

.portfolio-section {
    text-align: center;
    padding: 20px;
}

.portfolio-section h3:hover {
    text-decoration: underline;
}

/* css do carrosel */
.arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 34px;
    padding-top: 20px;
    user-select: none;
    width: 100%;
}

#prev {
    background-color: #fff;
    color: #051953;
    border-radius: 100%;
    height: 50px;
    width: 50px;
}

#prev:hover {
    background-color: #051953;
    color: #fff;
}

#next {
    background-color: #fff;
    color: #051953;
    border-radius: 100%;
    height: 50px;
    width: 50px;
}

#next:hover {
    background-color: #051953;
    color: #fff;
}


/* Estilo inicial para ocultar os elementos fora da tela */
.img-home, .texto-home {
    opacity: 0;
    position: relative;
}
  
/* Animação para a imagem entrar da esquerda */
@keyframes slideInLeft {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
}
  
/* Animação para o texto entrar da direita */
@keyframes slideInRight {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
}
  
/* Aplicando animações com duração e timing */
.img-home {
    animation: slideInLeft 1s ease-out forwards;
}
  
.texto-home {
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 0.5s; /* Atraso para que o texto entre um pouco depois da imagem */
}

.download-section {
    column-count: 3;
    column-gap: 20px; /* Ajuste o espaço entre as colunas, se desejar */
    gap: 20px;
}

.download-section p {
    margin: 20px 0 20px 0;
    font-size: 14px;
    color: #000;
}

.download-section .item {
    margin-top: 20px;
    padding: 20px;
}

.fale-conosco-section .container, .login-section  .container{
    border: 1px solid #000;
    padding: 20px;
    background-color: #056771;
    border-radius: 20px;
    color: #fff;
    /* centraliza objeto no centro da tela*/
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.login-section  .container h1{
    text-align: center;
    font-size: 28px;
    padding-bottom: 10px;
}

.login-section  .container .input-box {
    font-size: 18px;
    width: 100%;
}