@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');
:root {

    --fonte-titulo:"Poppins";
    

    --cor-btn:#096452;
    --cor-subtitulo:#F5F5F5;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #0bc49c;
    box-sizing: border-box;
}
.empresa {
    width: 100%;
    display: grid;
    place-items: center;
    padding: 5% 5% 5%;
    justify-content: center;
    gap: 150px;
}
.empresa-apresentacao{
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 20%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    gap:15px;
}
.empresa-apresentacao h1{
    font-family: var(--fonte-titulo);
    color: white;
    font-size: 36px;
}
.empresa-apresentacao p{
    font-family: var(--cor-btn);
    color: var(--cor-subtitulo);
    font-size: 18px;
}
.empresa-apresentacao-cards{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
}
.cards-itens{
    text-align: center;
    border: solid 1px #104237;
    border-radius: 5%;
    width: 15%;
    padding: 10px;
    background-color: var(--cor-btn);
    color: white;
    transition: 0.3s ease;
}
.cards-itens:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.08);
}
.empresa-valores{
    margin-top: 175px;
}
.empresa-valores h1{
    font-family: var(--fonte-titulo);
    color: white;
    font-size: 36px;
}
.empresa-valores-card{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.cards-itens-valores{
    text-align: center;
    border: solid 1px #104237;
    border-radius: 5%;
    width: 20%;
    height: auto;
    padding: 10px;
    padding-bottom: 40px;
    background-color: var(--cor-btn);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
 .cards-itens-valores:hover{
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.08);
}
.empresa-timeline h2{
    font-family: var(--fonte-titulo);
    color: white;
    margin-bottom: 3%;
}
.timeline-item {
  display: grid;
  grid-template-columns: 60px 24px 1fr;
  gap: 0 12px;
  margin-bottom: 32px;
  color: white;
}
.conteudo {
  position: relative;
  padding-left: 16px;
}
.conteudo::before {
  content: '';
  position: absolute;
  left: -13px; top: 8px;
  width: 1px; height: 100%;
  background: #ddd;
}
.conteudo::after {
  content: '';
  position: absolute;
  left: -17px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cor-btn);
}
.timeline-item:last-child
  .conteudo::before {
  display: none;
}
@media (max-width: 1024px) {
    .empresa-apresentacao{
        width: 30%;
    }
}
@media (max-width: 768px) {
    .empresa{
        flex-direction: column;
        align-items: center;
        gap:40px;
    }
    .empresa-apresentacao{
        width: 50%;
        align-items: center;
        margin-top: 10%;
    }
    .empresa-apresentacao h1{
        font-size: 25px;
    }
    .empresa-apresentacao p {
        font-size: 15px;
    }
    .empresa-apresentacao-cards{
        flex-direction: column;
        align-items: center;
    }
    .cards-itens{
        width: 50%;
    }
    .cards-itens h2{
        font-size: 20px;
    }
    .cards-itens p{
        font-size: 10px
    }
    .empresa-valores{
        margin-top: 50%;
    }
    .empresa-valores-card{
        gap:10px;
    }
    .cards-itens-valores{
        padding: 5px;
        width: 30%;
        box-sizing: border-box;
    }
    .cards-itens-valores h2{
        font-size: 20px;
    }
    .cards-itens-valores p{
        font-size: 13px;
    }
}