.cadastro-cta {
    border-radius: 50%;
    background-color: #fff;
    width: clamp(120px, 20vw, 200px);
    height: clamp(120px, 20vw, 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cadastro-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.cadastro-cta img {
    width: clamp(36px, 6vw, 60px);
    height: clamp(36px, 6vw, 60px);
}

.cadastro-cta span {
    margin-top: 10px;
    padding: 0 16px;
    text-align: center;
    font-size: clamp(0.8rem, 2vw, 1rem);
}
