
.title_area{
    font-size: 1.4em;
    margin: 50px;
    color: #4A4A4A;
}
#area {
    color: #4A4A4A;
    
    z-index: -1;
    position: relative;
    overflow: hidden;
    width: 100%; /* Garante que ocupa toda a largura */

      
}

#areal {
    display: flex;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
    gap: 0px 20px;

}

#areal>div {
    flex: 1 1 200px;
}
.name_backgroud {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    text-align: center;
    width: auto;
}

.name_backgroud h1{
    font-family: 'Monstserrat',Arial, Helvetica, sans-serif;
    color: #EBEBEB;
    font-size: 5em; 
    padding: 90px
}
.bloco {
    
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: "Roboto", serif;
    font-weight: 500;
    font-style: normal;
    height: 30vh;
    width: 10%;

}

.bloco p {
    font-family: "Roboto";
    font-size: large;
    padding: 10px;
}

.forma {
   
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    max-width: 80%;
    height: 65%;
    background-color: #ACB1F6;
    border-radius: 14px;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.100);   
}
.forma img {
    max-width: 87px;
}
#butto{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}
#button:hover{
    background-color: #333;
}
button {
    color: #ffffff;
    background-color: #6A5ACD;
    border: none;
    width: 250px;
    height: 55px;
    font-family: "Montserrat", serif;
    font-weight: 700;
    font-size: 17px;
    border-radius: 25px;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Suaviza transformações */
}

button:hover {
    transform: scale(1.1); /* Aumenta o botão de tamanho */
  background-color: #8470FF; /* Lavanda clara mais próxima */
  box-shadow: 0 0 15px 5px rgba(106, 90, 205, 0.5);
  
}
.formas{
    position: absolute;
    top: 80%;
    
}
.formas img{
    width: 70%;
}








@media screen and (max-width: 468px){
    #areal>div {
        flex: 1 1 150px;
        
    }
    #areal {
        display: flex;
        flex-wrap: wrap;
        max-width: 700px;
        margin: 0 auto;
        gap: 0;

    }
    .forma img {
        max-width: 78px;
    }
    
    .bloco {

       
        margin-left: 10px;
        margin-right: 10px;
        height: 200px;
        max-width: 400px;
  
        
    }
    .bloco p {
        font-family: "Roboto" serif;
        font-size: 18px;
        padding: 12px;
        font-family: "Roboto", serif;
        font-weight: 500;
        font-style: normal;
    }
    .forma {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 80%;
        height: 70%;
        background-color: #ACB1F6;
        border-radius: 14px;
        margin: 0px;
        box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.100);
        
    }
    .title_area{
        font-size: 1.2em;
    }
   
}