html{
    scroll-behavior: smooth;
}
.hero-section{
    text-align: center;
}
.main-section-options{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5%;
    width: 100%;
    padding: 0;
    margin-top: 20px;
    
}
.main-section-options-card{
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    gap: 5%;
    width: calc((100% / 3) - (10% / 3));
    text-align: center;
    background-color: rgb(213,213,186);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.main-section-options h3{
    height: 80px;
}
.main-section-options-card-container div h3, p{
    color: rgb(64, 64, 77);
}
.main-section-options-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: rgb(140, 140, 180);
}
.main-section-options-card-container{
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;   
}
.text-card{
    margin-top: 10px;
    border-style: solid;
    border-color: black;
    border-width: 4px 1px 1px 1px;
    padding: 5px;
    background-color: white;
    border-radius: 5px;
    height: 100px;
    text-indent: 0;
    
}
.container-sobre{
    margin-top: 50px;
    text-align: justify;
}
.container-sobre ul{
    list-style: circle;
    padding-left: 60px;
    
}