.centro{
  text-align: center;
}
*{
  animation: entrarDireita 1s ease;
  margin-bottom: 10px;
  font-family:'Courier New', Courier, monospace;
  color: white;
  
}
@keyframes entrarDireita {
  from{
    transform: translateX(100px);
    opacity: 0;
  }
  to{
    transform: translateX(0);
    opacity: 1;
  }
}
.borda-arredondada{
  border-radius: 15 px;
}
 .imagem-circular {
        width: 200px;
        height: 300px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto;
    }
.imagem-responsiva{
  max-width: 100%;
        height: auto;
        display: block;
}
.com-sombra {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
body{
        /* Define a imagem de fundo */
        background-image: url('../src/Contabilidade.png'); /* Caminho da imagem */
        /* Ajustes visuais */
        background-size: 100% 30%;       /* Faz a imagem cobrir toda a área */
        background-repeat: no-repeat; /* Evita repetição da imagem */
        background-position: top;  /* Centraliza a imagem */
        background-color: rgb(9, 9, 82);
        max-width: 900px;
        margin:auto;
        
        /* Cor de fundo de fallback (caso a imagem não carregue) */
        
}
a{
  color:white;
  font-weight: bold;
   background: #121289;
  padding: 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 18px;
}
a:hover{
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
a:active{
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
h1{
  color:white;
  text-shadow: 2px 2px 5px black;
}
h2{
  font-size: 26px;
}
p{
  font-size: 25px;
}
.whatsapp{
  position:fixed;
  bottom:30px;
  right:20px;
}
.email{
  position:fixed;
  bottom:30px;
  right:180px;
}
small{
  font-size: 15px;
}

