@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;
    box-sizing: border-box;
    font-family: "Poppins", Arial, Helvetica, sans-serif, monospace;
}


:root {
    --green: rgb(0, 61, 40);
    --yellow: rgb(246, 246, 38);
    --fundoVerde:rgb(4, 19, 3);
    --greenclaro: rgb(0, 135, 90);
}


#menuMobile {
    background-color: var(--green);
}


.menu-float {
    
    position:fixed;
    z-index: 3;
    top: 20px;
    left: 20px;
    z-index: 9999;
}




.sidebar{
    position: fixed;
    left:0;
    top:0;
    width:80px;
    height:100vh;
    z-index: 999;
    background:var(--green);
    transition:.3s;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    border-radius: 10px;
}

.sidebar:hover{
    width:350px;

}

.sidebar > ul > li {
    list-style: none;
}

.menu {
    display: flex;
    padding: 6px;
    color: white;    
    overflow:hidden;
    white-space:nowrap;
    justify-content: space-evenly;
    align-items:center;
    gap: 40px;

}

.menu img{
    
    min-width:40px;
    margin-left: 20px;
    
}

.title {
    margin: 25px;    
}

#offadri {
    
    margin: 8px auto auto 70px;
}

.menu-item{

    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:20px;
    padding:15px 0px;
    white-space:nowrap;
    transition:.2s;
}

.menu-item:hover{
    background: rgba(255, 255, 255, 0.131);
}

.menu-item i {

    font-size:22px;
    min-width:30px;
    text-align:center;
}



.redes {
    
    font-size: 2em;   
    display: flex;    
    overflow: hidden;
    justify-content: space-around;
    flex-direction: column;
    width: 180px;
    margin: 50px -5px;
    
}

.sidebar:hover .redes {
    display: flex;
    flex-direction: row;
       
}



.redes > a > i {
     color: white;
}

.redes > a > i:hover {
    color: var(--yellow);
    transition: .2;
}



.hero-quem-somos {
    background: linear-gradient(
        to right,
        #003b7a 0%,
        #003b7a 35%,
        rgba(0, 59, 122, 0.85) 50%,
        rgba(0, 59, 122, 0) 100%
    );

}


.content {
    background-color: rgb(248, 249, 250);

}

/* nossa caminhada */

.descricao-caminhada {
    text-align: justify;
    
}





#missao-visao-valores {
  background: #f0f7ff;
}

.titulo-secao {
  color: #1e4db7;
  font-size: 2.4rem;
  position: relative;
}

/* Cards */
.card-mvv {
  background: white;
  text-align: justify;
  border-radius: 20px;
  padding: 2rem 1.8rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

/* Quando a animação ativa */
.card-mvv.mostrar {
  opacity: 1;
  transform: translateY(0);
}

/* Cores de cada card */
.card-missao {
  border-top: 5px solid #e63946;
}
.card-missao .card-icon {
  background: #ffe5e8;
  color: #e63946;
}
.card-missao h3 {
  color: #e63946;
}

.card-visao {
  border-top: 5px solid #f4a261;
}
.card-visao .card-icon {
  background: #fff3e0;
  color: #f4a261;
}
.card-visao h3 {
  color: #f4a261;
}

.card-valores {
  border-top: 5px solid #2a9d8f;
}
.card-valores .card-icon {
  background: #e6f7f5;
  color: #2a9d8f;
}
.card-valores h3 {
  color: #2a9d8f;
}

/* Ícone */
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

/* Hover */
.card-mvv:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Lista de valores */
.lista-valores {
  list-style: none;
  padding: 0;
  margin: 0;
}


/* Textos */
.card-mvv p {
  color: #444;
  font-size: 0.98rem;
  line-height: 1.6;
}

.card-mvv h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}







#historia {
    margin-top: 80px;
    text-align: center;
}



table {
    border-collapse: collapse;
    border-radius: 20px;
}

tbody > tr:nth-child(2n) {
    background-color:rgb(192, 221, 232); 

}

th {
    background-color: rgb(220, 220, 220);
    padding: 10px;
    font-size: 1.3em;
    
}


tr > td {
    padding: 20px;
    font-weight: bold;
}






footer 
{
    background-color: var(--green);
}


.CT {
    display: flex; 
    align-items: center; 
    flex-shrink: 0;
}

.CT > div > i 
{
    font-size: 1.5em;
}






@media (max-width: 590px){

    .logo {
        display: block;
        margin: auto;
    }

        
    th {
        background-color: rgb(220, 220, 220);
        padding: 10px;
        font-size: 0.9em;
        
    }


    tr > td {
        padding: 20px;
        font-weight: bold;
        font-size: 0.7em;
    }
}