@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color:#0C0C0C ;
    font-family:Poppins;
}

header{
    display: flex;
    color:#CAAB66;
    flex-direction: column;
}

h1{
display: flex;
justify-content: center;
font-size: 35px;
text-shadow: 1px 1px 1px rgb(24, 24, 24);
}
nav{
    display: flex;
    justify-content: center;

}

.inf{
    display: flex;
    flex-wrap: wrap;
}


.inf>a:hover{
   border: 1px solid rgba(255, 218, 155, 0.964);
    transition: 0.4s;
    transform: translate(-4px, -4px);
}

i{
    font-size:18px ;
    color: #CAAB66;
    margin-bottom: 7px;
}
h3{
    align-items:center ;
    display: flex;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
   font-size: 13px;
   padding: 4px;
   padding-bottom: 8px;
}

a{
   
    text-decoration: none;
    color: #CAAB66;
    background-color:#141414;
    color: #CAAB66;
    display: flex;
  font-size: 17px;
   border-radius: 12px;
   border: 1px solid rgba(235, 204, 149, 0.129);
   margin: 10px;
   padding: 14px;
}

header P{
    align-items:center ;
    display: flex;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
   font-size: 30px;
   padding: 5px;

}
.total{
     width: 180px;
     height: 230px;
    flex-direction: column;
    display: flex;
    background-color: #141414;
    padding: 10px;
    margin: 10px;
    border-radius: 12px;
    align-items: center;
    justify-content:center;
    border: 1px solid rgba(235, 204, 149, 0.129);
}

.lucro{
     width: 180px;
     height: 230px;
    flex-direction: column;
    display: flex;
 background-color: #141414;
    padding: 10px 45px 0px 45px;
    margin: 10px;
    border-radius: 12px;
    align-items: center;
    justify-content:center;
    border: 1px solid rgba(235, 204, 149, 0.129);
}


.pendentes{
     width: 180px;
    height: 230px;
    flex-direction: column;
    display: flex;
background-color: #141414;
 padding: 10px 35px 0px 35px;
  margin: 10px;
  border-radius: 12px;
  align-items: center;
  justify-content:center;
  border: 1px solid rgba(235, 204, 149, 0.129);
   
}

main{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
   align-items: center;
}

.menu>a{
    width: 580px;
    display: flex;
    align-items: center;
    padding: 8px}


  a:hover{
    transform: translate(-3px, -3px);
    transition: 0.4s;
    border: 1px solid #ffcc81;
}

main p{
    display: flex;
    padding: 14px;
}


@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }

  .inf {
    flex-wrap: wrap;
    justify-content: center;
  }

  .inf a {
    width: 45%;   /* 2 cards por linha */
    height: auto;
    margin: 10px;
    padding: 20px;
  }

  .menu > a{
    width: 90%;   /* botões ocupam mais da tela */
    justify-content: center;
  }
  .menu > a > p{
    white-space: nowrap;
  }
}


/* Celular (até 768px) */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  .inf {
    flex-direction: column; /* empilha os cards */
    align-items: center;
  }

  .inf a {
    width: 90%;   /* ocupa quase a tela toda */
    height: auto; /* altura automática */
    margin: 10px 0;
    padding: 20px;
  }

  h3 {
    font-size: 18px;
  }

  header p {
    font-size: 22px;
  }

  .menu > a{
    width: 95%;
    height: auto;
    padding: 20px;
    font-size: 22px;
  }

  i {
    font-size: 24px; /* ícones menores */
  }
}
