.pagina  {
    background-image: url("../assets/image.jpg");
}
.home-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.home-title span {
    color:var(--orange-medium);
}

.conteudo p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 34px;
}

.opcoes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
}

.opcao {
    width: 182px;
    height: 182px;
    border-radius: 50%;
    background-color:var(--orange-medium);
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.opcao i {
    margin-bottom: 12px;
}

.opcao span {
    font-weight: 600;
    margin-top: 15px;
}

.opcao:hover {
    transform: scale(1.02);
    background-color:var(--orange-medium);
}