@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.container{
    padding-top: 40px;
    border-bottom: 20px solid chartreuse;
}

/* ===== HEADER ===== */

header h1 {
    margin: 0;
}

header img {
    height: 75px;
}

header{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: chartreuse;
    padding-left: 10px;
    padding-right: 40px;

    ul {
        list-style: none;
        display: flex;
        gap: 15px;
    }

    a {
        text-decoration: none;
        color: black;
    }

    a:hover{
        color: rgb(36, 36, 36);
        text-decoration: underline;
    }
}

header div{
    display: flex;
    align-items: center;
    gap: 18px;

    img {
        border-radius: 100%;
    }
}

/* ===== SOBRE NOS ===== */

#sobrenos {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 30px;
    background-color: black;
}

#sobrenos .sobrenos-conteudo {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 50px;
}

#sobrenos .textosn {
    background-color: gray;
    padding: 30px 40px 40px;
    width: 45%;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#sobrenos img {
    width: 500px;
    height: auto;
    align-self: stretch;
    object-fit: contain;
}

#sobrenos h2 {
    display: inline-block;
    background-color: chartreuse;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

#sobrenos p::first-letter {
  text-transform: uppercase;
  color: chartreuse;
}

/* ===== INTEGRANTES ===== */

#integrantes {
  background-color: black;
  border-bottom: 20px solid chartreuse;
  padding: 40px 20px;
}

#integrantes h2 {
  color: white;
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.integrantes-lista {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.integrantes-item {
  width: 170px;
  text-align: center;
  background-color: #8f8f8f;
  border-radius: 20px;
  padding: 20px 10px;
  transition: transform 0.3s;
}

.integrantes-item:hover {
  transform: scale(1.08);
}

.integrantes-item img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
  background-color: white;
  border: 4px solid chartreuse;
}

.integrantes-item h4 {
  background-color: chartreuse;
  color: black;
  border-radius: 10px;
  padding: 8px 0;
  margin-top: 15px;
  font-size: 18px;
}

/* ===== PROJETOS ===== */

#projetos{
    background-color: black;
    min-height: 500px;
    padding-left: 40px;

    h2 {
        color: white;
        text-align: center;
        font-size: 32px;
        margin-bottom: 40px;
        margin: 0;
    }
}

.proj-pai{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    min-width: 500px;
    padding-top: 60px;
}

.proj-filho{
    text-align: center;
    background-color: #8f8f8f;
    border-radius: 20px;
    padding: 10px 3px;
    width: 400px;
    transition: transform 0.3s;

    h4 {
        background-color: chartreuse;
        border-radius: 0px;
        padding: 8px 4px;
        width: fit-content;
        border-radius: 10px;
        margin: auto;
    }

}

.proj-filho:hover {
  transform: scale(1.08);
}

a {
    text-decoration: none;
    color: black;
}


/* ===== CONTATE-NOS ===== */

#contateNos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding-bottom: 25px;

    h1 {
        font-size: 32px;
        text-align: center;
        color: white;
    }
}

.contateNosContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #8f8f8f;
    width: min-content;
    border-radius: 20px;
    padding: 20px;
}

.contateNosContatos {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 25vw;

    li {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    img {
        width: 28px;
    }
}

.contateNosInput {
    display: flex;
    flex-direction: column;
    
    input {
        border-radius: 20px;
        height: 20px;
        border-style: none;
        margin-top: 5px;

        &::placeholder {
            font-style: italic;
        }
    }
}

/* ===== FOOTER ===== */

.footer {
  font-family: "Roboto Mono";
  background-color: chartreuse;
  color: #000000;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-endereco {
  margin-top: 10px;
}